Adrian
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Photo Gallery with multi-image upload support
Commencé par : Adrian in: Toolset Professional Support |
5 | 7 | Il y a 6 années et 6 mois | ||
Can't use restricted API
Commencé par : Adrian in: Toolset Professional Support |
1 | 4 | Il y a 6 années et 6 mois | ||
Use Content Templates anywhere
Commencé par : Adrian
in: Toolset Professional Support
Problem: |
2 | 2 | Il y a 6 années et 7 mois | ||
Toolset Maps – Google Maps Alternatives
Commencé par : Adrian
in: Toolset Professional Support
Problem: The issue here is that the user wanted to know if there is any alternative to the Google Maps being used by Toolset since the change in the Google API pricing. Solution: Unfortunately no not at this time, however our development team is aware of the current situation with Google's pricing changes for their Maps API |
2 | 5 | Il y a 6 années et 7 mois | ||
Filter Default Value not showing up
Commencé par : Adrian in: Toolset Professional Support |
2 | 5 | Il y a 6 années et 7 mois | ||
Colorpicker Preview
Commencé par : Adrian in: Toolset Professional Support |
2 | 2 | Il y a 6 années et 7 mois | ||
Can’t validate checkboxes
Commencé par : Adrian
in: Toolset Professional Support
Problem: I would like to require the User to select at least one checkbox from a checkboxes group in a CRED form. Solution: There's no way to do this from wp-admin, but you can apply backend validation using the cred_form_validate hook that will require at least one checkbox. add_filter('cred_form_validate','cred_form_validation', 2, 10); function cred_form_validation( $field_data, $form_data ) { // field data are field values and errors list($fields,$errors)=$field_data; $forms = array( 1234 ); // check to see if this is the correct form if ( in_array( $form_data['id'], $forms ) ) { if ( !isset($fields['wpcf-checkboxes']['value'][0])) $errors['checkboxes'] = 'At least one checkbox is required'; } return array( $fields, $errors ); } Change 1234 to match the CRED form ID, and change 'checkboxes' in both places to match the field slug. Relevant Documentation: |
2 | 4 | Il y a 6 années et 8 mois | ||
Unique Field Identifier
Commencé par : Adrian in: Toolset Professional Support |
2 | 4 | Il y a 6 années et 8 mois | ||
[Bug] Adding a post field to the content template disables shortcode parsing
Commencé par : Adrian in: Toolset Professional Support |
2 | 4 | Il y a 6 années et 8 mois | ||
Display only Filtered Values
Commencé par : Adrian
in: Toolset Professional Support
Problem: I have a custom search which filters by post ID based on URL query. Is there a way to return the [wpv-no-items-found] bit intstead for this particular view? Solution: f you pass empty URL parameter "my-url-param" to view, view will output all result. In your case, you can change it with Views filter hook "", for example add below codes into your theme/functions.php: add_filter( 'wpv_filter_query', 'show_empty_default_func', 99, 3 ); function show_empty_default_func( $query_args, $setting, $view_id ) { if($view_id == 12345) { if( isset($_GET['my-url-param']) && $_GET['my-url-param'] == '' ) { $query_args['post__in'] = array(0); } } return $query_args; } Please replace 12345 with your view's ID, replace "my-url-param" with your URL parameter Relevant Documentation: https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_query |
2 | 4 | Il y a 6 années et 8 mois | ||
Date with only Year and Month
Commencé par : Adrian
in: Toolset Professional Support
Problem: Solution: |
3 | 4 | Il y a 6 années et 8 mois | ||
Filter by repeating field groups
Commencé par : Adrian in: Toolset Professional Support |
4 | 7 | Il y a 6 années et 8 mois | ||
Profanity Filter
Commencé par : Adrian
in: Toolset Professional Support
Problem: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 2 | Il y a 6 années et 8 mois | ||
Simplify User Password Reset
Commencé par : Adrian
in: Toolset Professional Support
Problem: I would like to allow my site admins to reset a User's password and trigger the password reset email that is normally triggered from the Reset Password form. Solution: I do not know a way to bypass the step completely, but you can transfer the step from the end User to a site admin. Show those site admins a link to @http://yoursite.com/wp-login.php?action=lostpassword, where they can fill in the User's credentials for them and submit the form. |
2 | 4 | Il y a 6 années et 8 mois | ||
[bug] views replaces comments with paragraphs
Commencé par : Adrian in: Toolset Professional Support |
2 | 4 | Il y a 6 années et 8 mois |