Pat
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 |
---|---|---|---|---|---|
How to list post based on non custom field
Started by: Pat
in: Toolset Professional Support
Problem: The issue here is that the user wanted to list out all their posts that do not have a specific custom field. Solution: Unfortunately this isn't possible to do through the use of the User interface and as such a custom filter is required. The code below should be able to resolve this. add_filter( 'wpv_filter_query', 'display_not_exist_posts', 99, 3 ); function display_not_exist_posts( $query_args, $view_settings, $views_id ) { if ( $views_id == 123 ) { // if it is specific view and by default $query_args['meta_query'][] = array( 'key' => 'wpcf-customfieldslug', 'compare' => 'NOT EXISTS', ); } return $query_args; } Add this code to the Toolset custom code section in Toolset->Settings->Custom code and activate it. Change 123 to the ID of your view and wpcf-customfeldslug to the slug of your custom field keeping the wpcf- slug |
2 | 3 | 4 years, 3 months ago | ||
User registration form does not accept specific domain name
Started by: Pat
in: Toolset Professional Support
Problem: The issue here is that a specific email address isn't being validated while the other is when registering with a Toolset Form.. Example titi@cannesu.fr and titi@cannes.fr Solution: In order for the email to be valid the domain must also be valid. Toolset validation also checks to see if the email domain is valid. If it isn't then the verification of the email will fail. |
2 | 7 | 4 years, 3 months ago | ||
Another issue with Views used as a select in a Forms
Started by: Pat in: Toolset Professional Support |
2 | 5 | 4 years, 3 months ago | ||
Hook for adding a custom field in WC email
Started by: Pat in: Toolset Professional Support |
2 | 8 | 4 years, 3 months ago | ||
Unable to retrieve postmeta
Started by: Pat in: Toolset Professional Support |
2 | 3 | 4 years, 4 months ago | ||
Translation not done with last plugin version
Started by: Pat
in: Toolset Professional Support
Problem: The “UPLOAD OR SELECT IMAGE” text shown in a Form to clear an image does not seem to be translatable. Solution: You can translate the text with WordPress filter hook "gettext", for example: https://toolset.com/forums/topic/translation-not-done-with-last-plugin-version/#post-1489657 Relevant Documentation: |
2 | 6 | 4 years, 4 months ago | ||
How not to select taxonomy (leave blank) in front end
Started by: Pat in: Toolset Professional Support |
2 | 3 | 4 years, 4 months ago | ||
Dynamic field population inside a Form
1
2
Started by: Pat in: Toolset Professional Support |
3 | 22 | 4 years, 4 months ago | ||
Access issue on created roles
Started by: Pat in: Toolset Professional Support |
2 | 12 | 4 years, 6 months ago | ||
Post created by Cred commerce does not publish after order payment validation
Started by: Pat in: Toolset Professional Support |
2 | 3 | 4 years, 8 months ago | ||
Split: All variation plugins failed when the Toolset "Add to cart" shortcode is used – Woo Variations Table plugin
Started by: Pat in: Toolset Professional Support |
2 | 12 | 4 years, 9 months ago | ||
All variation plugins failed when the Toolset "Add to cart" shortcode is used
Started by: Pat in: Toolset Professional Support |
3 | 12 | 4 years, 9 months ago | ||
Define cront task thants to Toolset hook?
Started by: Pat in: Toolset Professional Support |
2 | 3 | 4 years, 10 months ago | ||
New issue with DIVI
Started by: Pat in: Toolset Professional Support |
2 | 11 | 4 years, 10 months ago | ||
Cred_sava_data for user meta
Started by: Pat in: Toolset Professional Support |
2 | 10 | 4 years, 11 months ago |