marcov-3
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 |
---|---|---|---|---|---|
Checkboxes generic field is not showing required message
Started by: marcov-3 in: Toolset Professional Support |
2 | 2 | 1 month, 2 weeks ago | ||
Split: How to translate all messages from the user forms? – how to translate — not set —
Started by: marcov-3 in: Toolset Professional Support |
2 | 7 | 1 month, 3 weeks ago | ||
How to translate all messages from the user forms?
Started by: marcov-3 in: Toolset Professional Support |
2 | 4 | 1 month, 3 weeks ago | ||
The date field is filling very slow
Started by: marcov-3
in: Toolset Professional Support
Problem: In a user form, the birthday field is slow to fill out after selecting a date. The delay makes the process cumbersome. Solution: The delay is due to Toolset using jQuery UI for the date fields' graphical user interface (GUI). Unfortunately, this is inherent to the library, and there is no direct solution within Toolset. To improve efficiency, consider hiring a developer to create a custom Date GUI using custom code. |
2 | 2 | 3 months, 2 weeks ago | ||
People having troubles loggin in and password reset
Started by: marcov-3 in: Toolset Professional Support |
2 | 4 | 3 months, 3 weeks ago | ||
Max characters multi line field
Started by: marcov-3
in: Toolset Professional Support
Problem: How can I limit the maximum total count of characters or lines in a multi-line field in a form? Solution: Use the following jQuery code to limit the number of lines in a multi-line field. This example sets a limit of 2 lines, but you can adjust this by changing the value of maxLines: jQuery.noConflict(); (function($) { $(document).ready(function() { var maxLines = 2; $('textarea').on('input', function() { var textarea = $(this); var lines = textarea.val().split('\n'); if (lines.length > maxLines) { textarea.val(lines.slice(0, maxLines).join('\n')); } }); }); })(jQuery); Relevant Documentation: |
2 | 10 | 3 months, 3 weeks ago | ||
How can I make user field required without it being added in every user form?
Started by: marcov-3 in: Toolset Professional Support |
2 | 13 | 4 months, 2 weeks ago | ||
The new user fields are above the basic Customer billing address and shipping
Started by: marcov-3
in: Toolset Professional Support
Problem: I have created many user forms to gather information from users, but these fields push the basic WooCommerce billing and shipping fields down on the user-edit.php page. My customer wants the basic fields at the top of the wp-admin/user-edit.php page. Solution: Create a CSS file and assign it to the WordPress Dashboard. Set the parent container of the boxes to display: flex and use the flex order feature to change the order of the boxes. Refer to the following resources for guidance: https://www.google.com/search?q=how+to+add+css+to+wordpress+dashboard |
2 | 2 | 4 months, 3 weeks ago | ||
I created a form to create an user and fill in woo billing fields but it doesn't
1
2
Started by: marcov-3 in: Toolset Professional Support |
2 | 20 | 5 months, 2 weeks ago | ||
How can I show user billing info in a user form where they can't be edited?
Started by: marcov-3 in: Toolset Professional Support |
2 | 5 | 5 months, 3 weeks ago | ||
Conditional fields stay after you change the conditional data
Started by: marcov-3 in: Toolset Professional Support |
2 | 4 | 6 months ago | ||
How to add a form not yet filled in by the user but should not create new user
Started by: marcov-3 in: Toolset Professional Support |
2 | 3 | 6 months ago | ||
I want to show user form in Woo my account page thru Yith my account endpoints
Started by: marcov-3 in: Toolset Professional Support |
2 | 4 | 7 months ago | ||
The placeholder is shown without code for the placeholder?
Started by: marcov-3 in: Toolset Professional Support |
2 | 6 | 7 months, 3 weeks ago | ||
Woocommerce billing fields show but no info is filled in from user
Started by: marcov-3 in: Toolset Professional Support |
2 | 2 | 8 months ago |