toolset-dave
Support threads created in the last 30 days: 1
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Collapse button for Repeatable Field Group
Started by: toolset-dave
in: Toolset Professional Support
Problem: I would like to use jQuery Collapse for showing and hiding repeatable field groups (RFG) in a View, but the code isn't working when I have more than one RFG. Solution: Use CSS classes instead of IDs as your jQuery targets. <div> <fieldset class="majorpoints" > <legend class="majorpointslegend">Expand</legend> <div class="mylist" style="display:none" > <ul> <li>2</li> <li>3</li> </ul> </div> </fieldset> </div> <div> <fieldset class="majorpoints" > <legend class="majorpointslegend">Expand</legend> <div class="mylist" style="display:none" > <ul> <li>2</li> <li>3</li> </ul> </div> </fieldset> </div> <div> <fieldset class="majorpoints" > <legend class="majorpointslegend">Expand</legend> <div class="mylist" style="display:none" > <ul> <li>2</li> <li>3</li> </ul> </div> </fieldset> </div> jQuery(document).ready(function($){ $('.majorpointslegend').click(function(){ if($(this).text()=='Expand'){ $(this).next('.mylist').show(); $(this).text('Collapse'); }else{ $(this).next('.mylist').hide(); $(this).text('Expand'); } }); }); Relevant Documentation: |
2 | 3 | 6 years ago | ||
Collapsible treeview for multiple checkboxes
Started by: toolset-dave in: Toolset Professional Support |
2 | 6 | 6 years ago | ||
Ordering of Repeatable field groups
Started by: toolset-dave in: Toolset Professional Support |
3 | 8 | 6 years, 2 months ago | ||
Restricted access to CPT based on User roles
Started by: toolset-dave
in: Toolset Professional Support
Problem: Solution: Relevant Ticket & Solution: |
2 | 5 | 6 years, 2 months ago | ||
How to hide other plugins for specific roles using Toolset Access?
Started by: toolset-dave in: Toolset Professional Support |
2 | 2 | 6 years, 2 months ago | ||
Move data from rows to columns
Started by: toolset-dave in: Toolset Professional Support |
2 | 10 | 6 years, 5 months ago | ||
How to change value of the Submit button in Relationship Forms
Started by: toolset-dave
in: Toolset Professional Support
Problem: Solution: For example: [cred-form-submit label="your custom label"] You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 7 | 6 years, 6 months ago | ||
Need help with migrating Toolset Form
Started by: toolset-dave in: Toolset Professional Support |
2 | 8 | 6 years, 6 months ago | ||
Conditional display based on number of parents
Started by: toolset-dave
in: Toolset Professional Support
Problem: Solution: Take careful note of the parameters, because the first *8* are required, as described here: https://toolset.com/forums/topic/conditional-display-based-on-number-of-parents/#post-906135 Relevant Documentation: |
3 | 9 | 6 years, 6 months ago | ||
Post saved shows in all the posts
Started by: toolset-dave
in: Toolset Professional Support
Problem: I have a View that shows a list of posts with a CRED form in each result. When I submit one CRED form, the other forms all show the confirmation "Post Saved" message. Solution: The confirmation is only intended to work on a page with one form. We will submit a feature request to extend the use of this message so that it can be shown effectively on a page with multiple forms. |
3 | 8 | 6 years, 7 months ago | ||
How to show in CRED Parent Selector only posts of logged in user?
1
2
Started by: toolset-dave
in: Toolset Professional Support
Problem: Solution: |
2 | 27 | 6 years, 11 months ago | ||
admin-ajax.php affecting website loading time
Started by: toolset-dave
in: Toolset Professional Support
Problem: I see multiple calls to admin-ajax.php on my site and this seems to be increasing the time to "fully loaded" in my website performance tests. Solution: "Fully loaded" isn't very good at determining which items are render blocking and which items are asynchronous in a waterfall view. In this case, the calls to admin-ajax.php are not render blocking and do not affect the time it takes for your site to become painted and interactive. These calls are used to help preload images and content for slider Views. You can disable preloading in the slider Views' Advanced options, but the User experience may be negatively affected. Relevant Documentation: https://gtmetrix.com/faq.html#faq-fully-loaded-vs-onload |
2 | 3 | 6 years, 11 months ago | ||
Select2 translation
Started by: toolset-dave in: Toolset Professional Support |
2 | 4 | 6 years, 11 months ago | ||
Flexslider not shows
Started by: toolset-dave in: Toolset Professional Support |
2 | 9 | 6 years, 11 months ago | ||
Problem with page created in Layouts
Started by: toolset-dave in: Toolset Professional Support |
2 | 9 | 6 years, 11 months ago |