barakl
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 |
---|---|---|---|---|---|
query filter and WPML
Started by: barakl in: Toolset Professional Support |
|
2 | 4 | 5 years, 9 months ago | |
SearchWP integration
Started by: barakl in: Toolset Professional Support |
|
2 | 2 | 5 years, 11 months ago | |
no search results
Started by: barakl in: Toolset Professional Support |
2 | 2 | 6 years, 1 month ago | ||
Query Filter by date not working
Started by: barakl
in: Toolset Professional Support
Problem: I would like to display a list of posts that were published in the last 2 months, but I can't get the Query Filter to work correctly. Solution: Month range filters like this aren't simple to add in wp-admin but I can provide a custom code snippet that will help. First, please remove the post date filters from your View. Then add the following code to your child theme's functions.php file, or create a new snippet in Toolset > Settings > Custom code: add_filter( 'wpv_filter_query', 'get_past_two_months_posts', 10, 3); function get_past_two_months_posts( $query_args ,$view_settings, $view_id ) { $views = array( 12345 ); if (in_array($view_id, $views)) { $query_args['date_query'] = array( 'column' => 'post_date', 'after' => '2 months ago', ); } return $query_args; } Replace 12345 with the numeric ID of this View. Relevant Documentation: |
|
2 | 3 | 6 years, 1 month ago | |
archive post type by month
Started by: barakl in: Toolset Professional Support |
|
2 | 2 | 6 years, 1 month ago | |
Even though I made a registration I could not upgrade the plug-ins
Started by: barakl in: Toolset Professional Support |
|
2 | 2 | 6 years, 1 month ago | |
VERY URGENT – when view is active all the content of Elementor is invisible!!!!!
Started by: barakl in: Toolset Professional Support |
2 | 2 | 6 years, 4 months ago | ||
convert not toolset PT to toolset
Started by: barakl in: Toolset Professional Support |
|
2 | 2 | 6 years, 4 months ago | |
Console errors regarding the map
Started by: barakl in: Toolset Professional Support |
|
2 | 2 | 6 years, 5 months ago |