marcelO-2
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
How do I duplicate an Archive template?
Started by: marcelO-2
in: Toolset Professional Support
Problem: I want to duplicate an Archive template, using Blocks editor Solution: There isn't such kind of built-in feature within Toolset Blocks plugin, and the client shares a workaround to duplicate the Toolset WordPress archive with code editor: See the video here: Relevant Documentation: |
5 | 11 | 3 years, 7 months ago | ||
Keeps enabling Pagination
Started by: marcelO-2 in: Toolset Professional Support |
3 | 8 | 4 years, 7 months ago | ||
Error notice from using Toolset Blocks
Started by: marcelO-2
in: Toolset Professional Support
Problem: Activate both Blocks1.0 + Types 3.3.8 and EditorsKit 1.22.1 plugins, go to EditorsKit setting page, there are some PHP notice message. Solution: It is fixed in the latest version of Toolset Blockers plugin 1.0.2, you can download it here: https://toolset.com/account/downloads/ Relevant Documentation: |
3 | 5 | 4 years, 11 months ago | ||
Custom CSS not applying
Started by: marcelO-2 in: Toolset Professional Support |
3 | 14 | 5 years, 8 months ago | ||
Excerpt length not what I specify in Content Template
Started by: marcelO-2
in: Toolset Professional Support
Problem: The issue here is that the user is using the [wpv-post-excerpt] shortcode with the length parameter e.g [wpv-post-excerpt length='200'] however the length attribute was not working. Solution: Upon investigating this issue for the custom I found that it was a plugin conflict with the "Organize Series" plugin. If you are currently experiencing a similar issue I would recommend trying to disable all the non-toolset plugins and try again. |
2 | 11 | 5 years, 9 months ago | ||
There are 2 +Add New buttons displayed on my form
1
2
Started by: marcelO-2
in: Toolset Professional Support
Problem: I have a Form that includes a custom taxonomy input field along with the option to add a new term, "+ Add New". After updating to the new drag-and-drop Form builder and moving the field around, there are two "+ Add New" buttons next to the term input field. Solution: Update to Forms 2.3.2 to receive the fix for this issue. After updating please find and edit the Form in wp-admin. Delete the taxonomy field, then use the drag-and-drop editor to replace the field in the Form body. Relevant Documentation: https://toolset.com/errata/add-new-shortcode-for-taxonomy-term-in-forms-is-duplicated-or-not-shown-at-all/ |
2 | 17 | 5 years, 9 months ago | ||
Access control has been set to allow users to edit, but no 'Edit' in backend
Started by: marcelO-2 in: Toolset Professional Support |
3 | 15 | 5 years, 9 months ago | ||
Limiting characters in field
Started by: marcelO-2
in: Toolset Professional Support
Problem: The issue here is that the user wanted to limit the amount of characters in their form field. Solution: This can be done by using the code in the example below. jQuery(document).ready(function ($) { $('[name^=post_excerpt]').attr('maxlength',280); }); ( function( $ ) { $( document ).ready( function(){ // insert div to display char count $('textarea[name="post_excerpt"]').after("<div class='char-count'>0</div>"); // listen for keyup and update the count $('textarea[name="post_excerpt"]').keyup( function(){ var chars = $('textarea[name="post_excerpt"]').val().length; $('.char-count').html( chars ); }); }); })( jQuery ); To display the counter you will need to add a p tag to your form with the class "char-count" |
3 | 7 | 5 years, 10 months ago | ||
I’d like to make a Gallery from images added in a Post Type
Started by: marcelO-2
in: Toolset Professional Support
Problem: Make use of the default wordpress gallery shortcode with Toolset image ID's The solution for this can be seen below. |
2 | 7 | 5 years, 10 months ago |