christopheV-2
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 |
---|---|---|---|---|---|
Multiple Lines
Started by: christopheV-2
in: Toolset Professional Support
Problem: The issue here is that the user wanted to add automatic paragraphs to his multiple line display Solution: Naturally these fields don't have automatic paragraphs. You will need to use our wpv-autop shortcode when displaying the field. |
2 | 2 | 6 years, 5 months ago | ||
Permalink with custom field
Started by: christopheV-2 in: Toolset Professional Support |
2 | 2 | 6 years, 5 months ago | ||
Price filter
Started by: christopheV-2 in: Toolset Professional Support |
2 | 8 | 6 years, 5 months ago | ||
Modify existing custom field values
Started by: christopheV-2
in: Toolset Professional Support
Problem: I would like to be able to change the values in a custom field. Solution: |
2 | 2 | 6 years, 5 months ago | ||
Search Filter tests “all” options instead of “any” options
Started by: christopheV-2
in: Toolset Professional Support
Problem: I have a "select" custom field that includes several options. I have created a custom search View that includes this field as a filter using checkboxes. If I check any one option, the View shows the correct results. But if I check more than one option, no results are shown. Solution: The Query Filter in this View is configured to test using the "equal to" comparison instead of the "in" comparison. Check the attached screenshot to see this configuration in the View editor screen. Your Query Filter should use "in" to check if the posts contain any of the selected values, not all of the selected values (i.e. the "equal to" option). If you cannot see the Query Filter section in your View editor screen, scroll to the top right corner of the screen and click "Screen Options", then you can enable the Query Filter panel. Relevant Documentation: |
2 | 3 | 6 years, 5 months ago | ||
— not set —-
Started by: christopheV-2 in: Toolset Professional Support |
2 | 6 | 6 years, 6 months ago | ||
ALL import and Unserialized Checboxes
Started by: christopheV-2 in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
Price Range
Started by: christopheV-2
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 6 months ago | ||
Types with existing custom field
Started by: christopheV-2 in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
Filter by post date
Started by: christopheV-2
in: Toolset Professional Support
Problem: I would like to include a post date filter in a parametric search View. Solution: At this time we do not provide a built-in front-end search control for post date. Our developers have accepted a feature request to add this type of filter, but I do not yet have a release date available for that improvement. In the meantime, you have the ability to provide front-end search controls for dates in custom fields, so you could use the save_post API to copy the publish date into a custom field as a timestamp, then insert the custom date field as a filter in your custom search View controls. Add this custom code to your child theme's functions.php file: function copy_custom_date_field ( $post_id ) { // only copy over the publish date on original posts $status = get_post_status( $post_id ); $pubdate = get_post_meta( $post_id, 'wpcf-issue-date', true); if ( $status != 'publish' || $pubdate ) return; $pubdate = get_the_date( 'U', $post_id ); update_post_meta( $post_id, 'wpcf-issue-date', $pubdate, '' ); } add_action( 'save_post', 'copy_custom_date_field', 1000 ); Replace "wpcf-issue-date" in both places with the slug of your custom field, using the wpcf- prefix. So if your custom field slug is "custom-post-date" then you should use "wpcf-custom-post-date". Relevant Documentation: |
3 | 3 | 6 years, 7 months ago | ||
Addition Group Repeating Fields
Started by: christopheV-2 in: Toolset Professional Support |
2 | 4 | 6 years, 7 months ago | ||
Sportspress plugin
Started by: christopheV-2
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 7 months ago | ||
Views and Radio Button Option
Started by: christopheV-2 in: Toolset Professional Support |
2 | 3 | 6 years, 7 months ago | ||
External API with TYpes
Started by: christopheV-2
in: Toolset Professional Support
Problem: The issue here is that the user wanted to know if it was possible to sync Types with an external API Solution: Unfortunatel, no this is not possible. |
2 | 4 | 6 years, 8 months ago | ||
CRED and POST DATE
Started by: christopheV-2 in: Toolset Professional Support |
2 | 4 | 6 years, 9 months ago |