Tiit Sau
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Custom field for product variation
Gestartet von: Tiit Sau in: Toolset Professional Support |
3 | 6 | vor 4 Jahren, 5 Monaten | ||
Products as post type missing
Gestartet von: 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 | vor 4 Jahren, 5 Monaten | ||
Content Template dropdown empty for product
Gestartet von: Tiit Sau in: Toolset Professional Support |
2 | 3 | vor 4 Jahren, 7 Monaten | ||
User edit form: input value of field with multiple instances allowed missing
Gestartet von: Tiit Sau in: Toolset Professional Support |
2 | 9 | vor 5 Jahren, 3 Monaten | ||
Email notifications translation does not apply
Gestartet von: Tiit Sau in: Toolset Professional Support |
2 | 12 | vor 5 Jahren, 3 Monaten | ||
errors on front after software updates
Gestartet von: Tiit Sau in: Toolset Professional Support |
2 | 7 | vor 5 Jahren, 10 Monaten | ||
Invisible reCAPTCHA supported?
Gestartet von: Tiit Sau in: Toolset Professional Support |
3 | 4 | vor 6 Jahren, 2 Monaten | ||
add media in layout editor
Gestartet von: Tiit Sau in: Toolset Professional Support |
2 | 6 | vor 6 Jahren, 4 Monaten | ||
Set marker labels visible by default on Google map
Gestartet von: Tiit Sau in: Toolset Professional Support |
2 | 3 | vor 6 Jahren, 4 Monaten | ||
How to set password minimum length
Gestartet von: 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 | vor 6 Jahren, 5 Monaten | ||
How to display conditional content based on custom user field
Gestartet von: Tiit Sau
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 15 | vor 6 Jahren, 8 Monaten | ||
new row with repeating field next value
Gestartet von: 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 | vor 6 Jahren, 9 Monaten | ||
Secure uploads
Gestartet von: 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 | vor 6 Jahren, 10 Monaten | ||
How to generate document based on variable user meta?
Gestartet von: 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 | vor 6 Jahren, 11 Monaten |