emilyT
Fils de soutien créés au cours des 30 derniers jours : 1
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
| Status | Topic | Supporter | Voix | Publications | Nouveauté |
|---|---|---|---|---|---|
|
Unable to register Toolset
Commencé par : emilyT in: Toolset Professional Support |
|
1 | 4 | Il y a 1 weeks | |
|
Setting minimum characters in text search
Commencé par : emilyT
in: Toolset Professional Support
Problem:
jQuery(document).ready(function($) {
// Reference to the search field and submit button
var $searchField = $('input[name="wpv_post_search"]');
var $submitButton = $('input[name="wpv_filter_submit"]');
// Initially disable the submit button
$submitButton.prop('disabled', true);
// Event handler for keyup on the search field
$searchField.on('keyup', function() {
var minLength = 10;
var currentLength = $(this).val().length;
// Enable or disable the submit button based on the character count
if(currentLength >= minLength) {
$submitButton.prop('disabled', false);
} else {
$submitButton.prop('disabled', true);
}
});
});
In the code above: - The search field is referenced by its name, wpv_post_search. |
|
2 | 3 | Il y a 1 years, 10 months | |
|
WYSIWYG Editor Buttons not showing
Commencé par : emilyT
in: Toolset Professional Support
Problem: Third party WYSIWYG buttons does not show when Toolset is active. Solution: Update Toolset Types to 3.4.17 or later. - IMPORTANT STEP! Create a backup of your website. Relevant Documentation https://toolset.com/faq/how-to-install-and-register-toolset/ |
|
2 | 5 | Il y a 3 years | |
|
Moving caption on top of image
Commencé par : emilyT in: Toolset Professional Support |
|
2 | 5 | Il y a 3 years, 5 months | |
|
Creating a view to display custom taxonomy term
Commencé par : emilyT in: Toolset Professional Support |
|
2 | 3 | Il y a 3 years, 6 months | |
|
Displaying Custom Value on Frontend
Commencé par : emilyT in: Toolset Professional Support |
2 | 3 | Il y a 3 years, 6 months | ||
|
Upgrading Toolset WooCommerce Blocks from 2.9.4 to 3.0 breaks sort order
Commencé par : emilyT
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
|
2 | 7 | Il y a 4 years, 6 months |