deepS
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 |
---|---|---|---|---|---|
Frontend search filter by post types
Started by: deepS in: Toolset Professional Support |
3 | 9 | 3 years, 2 months ago | ||
Tag filter in view showing irrelevant Tag
Started by: deepS in: Toolset Professional Support |
2 | 8 | 3 years, 6 months ago | ||
Custom filters not working in a elementor
Started by: deepS in: Toolset Professional Support |
2 | 7 | 3 years, 6 months ago | ||
View showing results inconsistently
Started by: deepS in: Toolset Professional Support |
2 | 9 | 3 years, 6 months ago | ||
Display only the first result
Started by: deepS
in: Toolset Professional Support
Problem: The issue here is that the user wanted to filter out their posts that have an empty date field. Solution: This can be done with the code below. add_filter( 'wpv_filter_query', 'filter_empty_dates', 99, 3 ); function filter_empty_dates( $query_args,$view_settings ,$view_id ) { if ( $view_id == 503724) { $query_args['meta_query'] = array( 'relation' => 'AND', array( 'key' => 'wpcf-exam-date', 'value' => '', 'compare' => '!=' ), array( 'key' => 'wpcf-exam-date', 'value' => time(), 'compare' => '>=' ) ); } return $query_args; } Add the above to your Toolset custom code section in Toolset -> Custom Code and activate it. You will need to change the 503724 to your view's id as well as the wwpcf-exam-date to the slug of your image field keeping the wpcf- prefix. |
3 | 16 | 3 years, 7 months ago | ||
Nested condition within condition
Started by: deepS in: Toolset Professional Support |
2 | 14 | 3 years, 8 months ago | ||
Toolset data import
Started by: deepS in: Toolset Professional Support |
2 | 4 | 3 years, 8 months ago | ||
Customization in filter button
Started by: deepS in: Toolset Professional Support |
2 | 7 | 3 years, 10 months ago | ||
Taxonomy archive links in the nav bar
Started by: deepS in: Toolset Professional Support |
1 | 2 | 4 years ago | ||
Post counts are not correct
Started by: deepS in: Toolset Professional Support |
2 | 12 | 4 years ago | ||
Selective Taxonomy View
Started by: deepS
in: Toolset Professional Support
Problem: Everything is fine but I want to display specific Parent views set by specific parent term ID or anything convenient in this regard so that I can put them in page builder to generate views. Solution: [wpv-view name="my-taxonomy-view" terms="15"] OR [wpv-view name="my-taxonomy-view" terms="15, 27, 98"] Relevant Documentation: |
2 | 6 | 4 years ago | ||
Different archive style for parent and child categories
Started by: deepS in: Toolset Professional Support |
3 | 12 | 4 years, 1 month ago | ||
Video is not running
Started by: deepS
in: Toolset Professional Support
Problem: Solution: Then, we need to have the domain from where the video is loaded to be whitelisted in WordPress. Check the list of whitelisted domains by default here https://wordpress.org/support/article/embeds/#okay-so-what-sites-can-i-embed-from If the domain cannot return formatted HTML, we can register a callback handler with wp_embed_register_handler() . Check this section https://wordpress.org/support/article/embeds/#removing-support-for-an-oembed-enabled-site |
2 | 7 | 4 years, 1 month ago | ||
Nested conditions in Elementor page builed
Started by: deepS
in: Toolset Professional Support
Problem: Solution: [wpv-post-body view_template="Name or slug of the content template here"] Relevant Documentation: |
2 | 8 | 4 years, 2 months ago | ||
How to display field values with elementor page builder?
Started by: deepS in: Toolset Professional Support |
1 | 2 | 4 years, 2 months ago |