Tiit Sau
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 |
---|---|---|---|---|---|
Products as post type missing
Started by: Tiit Sau
in: Toolset Professional Support
Problem: Control Woocommerce product post type with Toolset Types plugin. Solution: The product post type is created with Woocommerce plugin, Types plugin can not modify it. Relevant Documentation: |
4 | 11 | 4 years, 3 months ago | ||
Content Template dropdown empty for product
Started by: Tiit Sau in: Toolset Professional Support |
2 | 3 | 4 years, 4 months ago | ||
User edit form: input value of field with multiple instances allowed missing
Started by: Tiit Sau in: Toolset Professional Support |
2 | 9 | 5 years, 1 month ago | ||
Email notifications translation does not apply
Started by: Tiit Sau in: Toolset Professional Support |
2 | 12 | 5 years, 1 month ago | ||
errors on front after software updates
Started by: Tiit Sau in: Toolset Professional Support |
2 | 7 | 5 years, 8 months ago | ||
Invisible reCAPTCHA supported?
Started by: Tiit Sau in: Toolset Professional Support |
3 | 4 | 6 years ago | ||
add media in layout editor
Started by: Tiit Sau in: Toolset Professional Support |
2 | 6 | 6 years, 1 month ago | ||
Custom Search for Users
Started by: Tiit Sau
in: Toolset Professional Support
Problem: Solution: You can upvote the feature request, as it is already filed internally. We do not have an ETA of this features |
2 | 6 | 6 years, 2 months ago | ||
Set marker labels visible by default on Google map
Started by: Tiit Sau in: Toolset Professional Support |
2 | 3 | 6 years, 2 months ago | ||
How to set password minimum length
Started by: Tiit Sau
in: Toolset Professional Support
Problem: I would like to enforce a minimum length for User passwords in Forms. Solution: You can use the cred_form_validate API to apply back-end validation to password fields. // require minimum password length in User Forms add_filter( 'cred_form_validate', 'validate_password_length', 10, 2 ); function validate_password_length( $error_fields, $form_data ) { $forms = array( 1234, 5678 ); list($fields,$errors)=$error_fields; if( in_array( $form_data['id'], $forms ) ){ $p = isset($fields['user_pass']['value']) ? $fields['user_pass']['value'] : ''; if( strlen($p) < 6 ){ $errors['user_pass'] = __('Password must include a minimum of 6 characters'); } } return array( $fields, $errors ); } Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_form_validate |
2 | 3 | 6 years, 3 months ago | ||
How to display conditional content based on custom user field
Started by: Tiit Sau
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 15 | 6 years, 6 months ago | ||
new row with repeating field next value
Started by: Tiit Sau
in: Toolset Professional Support
Problem: The issue here is that the user had a table but wanted to display the repeated fields individually. Solution: |
2 | 8 | 6 years, 7 months ago | ||
Secure uploads
Started by: Tiit Sau
in: Toolset Professional Support
Problem: The issue here is that the user wanted to restrict access to the media elements when navigated to from a direct url. Example https://mysite.eu/wp-content/uploads/2018/03/contract.pdf Solution: What you can do is to follow the instructions in the link below and it should be able to help you restrict this. |
2 | 9 | 6 years, 7 months ago | ||
How to generate document based on variable user meta?
Started by: Tiit Sau
in: Toolset Professional Support
Problem: I have a page on my site that displays information about a User using Types and Views shortcodes. This works fine when I want to show information about the current User, but I cannot figure out how to show information about a different User. Solution: Use a URL parameter to define the variable User ID used in the Driver Contract page. Build the markup for the administrator's link to the Driver Contract page with the proper URL parameter, based on the User in the list loop, something like this: <wpv-loop> ... <a href="http://yoursite.com/contract/?user_id=[wpv-user field='ID']">view</a> ... </wpv-loop> In the content of the contract page, you can access that user ID using the shortcode wpv-search-term: [wpv-search-term param='user_id'] You can pass that value into your template's User shortcodes: [types usermeta="contract-number" user_id="[wpv-search-term param='user_id']"][/types] Relevant Documentation: |
2 | 4 | 6 years, 8 months ago | ||
How to include custom user fields in module for export
Started by: Tiit Sau
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 10 months ago |