Paul
Living and working in Poole, Dorset UK.
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 |
---|---|---|---|---|---|
Submit multiple CRED forms at once
Started by: Paul in: Toolset Professional Support |
2 | 6 | 5 years, 1 month ago | ||
Conditional Progress bar based on empty fields
Started by: Paul in: Toolset Professional Support |
2 | 14 | 5 years, 1 month ago | ||
Getting User Field From CRED User Form
Started by: Paul in: Toolset Professional Support |
2 | 13 | 5 years, 1 month ago | ||
User form linked to CRED Commerce User Role
Started by: Paul in: Toolset Professional Support |
2 | 8 | 5 years, 1 month ago | ||
Exclude Taxonomy from View Filters
Started by: Paul in: Toolset Professional Support |
2 | 4 | 5 years, 2 months ago | ||
Google maps needs reinitialising after page load
Started by: Paul in: Toolset Professional Support |
2 | 2 | 5 years, 3 months ago | ||
Pre select filter category if on the archive page for that category
Started by: Paul in: Toolset Professional Support |
2 | 2 | 5 years, 3 months ago | ||
Asign current logged in user to Repeatable Group form
Started by: Paul in: Toolset Professional Support |
2 | 2 | 5 years, 4 months ago | ||
Post Content not being pulled in. Only showing on first modal click
Started by: Paul in: Toolset Professional Support |
2 | 3 | 5 years, 7 months ago | ||
Front End Admin Edit User Forms
Started by: Paul
in: Toolset Professional Support
Problem: Solution: If you have Access enabled on the site, you must grant the appropriate access to the user forms in the Access settings. Relevant Documentation: |
2 | 4 | 5 years, 7 months ago | ||
Updating to Types 3.2.5 outputs errors
Started by: Paul
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
3 | 8 | 5 years, 8 months ago | ||
CRED interfering with Membership Pro (WPMU) plugin
Started by: Paul in: Toolset Professional Support |
2 | 9 | 5 years, 11 months ago | ||
Woocommerce Product Image Meta Data
Started by: Paul in: Toolset Professional Support |
2 | 2 | 6 years, 1 month ago | ||
Pricing View filter in parametric search
Started by: Paul
in: Toolset Professional Support
Problem: I would like to add a filter to my custom search View that has options with different price ranges. For example, Less than 50, 50 - 100, and 100+. Solution: There is not an easy way to accomplish this in Toolset using a standard price filter. You would have to create a separate custom field that holds a value that represents each price range, then filter based on that custom field. To automate the process, you could use a hook like save_post or pmxi_saved_post to check the current price and update the value automatically: function post_saved( $post_id, $post, $update ) { $range = 0; $price = get_post_meta( $post_id, 'wpcf-price', true); if( $price < 50000 ) { $range = 1; }else if( $price >= 50000 && $price <= 100000 ) { $range = 2; } else if( $price > 100000 ) { $range = 3; } update_post_meta( $post_id, 'wpcf-sort-price', $range); } add_action( 'pmxi_saved_post', 'post_saved',10,1); Relevant Documentation: |
2 | 4 | 6 years, 3 months ago | ||
PHP Function to assign Views Template
Started by: Paul in: Toolset Professional Support |
2 | 3 | 6 years, 3 months ago |