Tiit Sau
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Custom field for product variation
Iniciado por: Tiit Sau en: Toolset Professional Support |
3 | 6 | hace 4 años, 5 meses | ||
Products as post type missing
Iniciado por: Tiit Sau
en: 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 | hace 4 años, 5 meses | ||
Content Template dropdown empty for product
Iniciado por: Tiit Sau en: Toolset Professional Support |
2 | 3 | hace 4 años, 7 meses | ||
User edit form: input value of field with multiple instances allowed missing
Iniciado por: Tiit Sau en: Toolset Professional Support |
2 | 9 | hace 5 años, 3 meses | ||
Email notifications translation does not apply
Iniciado por: Tiit Sau en: Toolset Professional Support |
2 | 12 | hace 5 años, 3 meses | ||
errors on front after software updates
Iniciado por: Tiit Sau en: Toolset Professional Support |
2 | 7 | hace 5 años, 10 meses | ||
Invisible reCAPTCHA supported?
Iniciado por: Tiit Sau en: Toolset Professional Support |
3 | 4 | hace 6 años, 2 meses | ||
add media in layout editor
Iniciado por: Tiit Sau en: Toolset Professional Support |
2 | 6 | hace 6 años, 4 meses | ||
Set marker labels visible by default on Google map
Iniciado por: Tiit Sau en: Toolset Professional Support |
2 | 3 | hace 6 años, 4 meses | ||
How to set password minimum length
Iniciado por: Tiit Sau
en: 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 | hace 6 años, 5 meses | ||
How to display conditional content based on custom user field
Iniciado por: Tiit Sau
en: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 15 | hace 6 años, 8 meses | ||
new row with repeating field next value
Iniciado por: Tiit Sau
en: 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 | hace 6 años, 9 meses | ||
Secure uploads
Iniciado por: Tiit Sau
en: 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 | hace 6 años, 10 meses | ||
How to generate document based on variable user meta?
Iniciado por: Tiit Sau
en: 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 | hace 6 años, 11 meses |