matthiasK-3
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 |
---|---|---|---|---|---|
Problem with Astra Site Builder after updating plugins Toolset Blocks and Forms
Started by: matthiasK-3 in: Toolset Professional Support |
2 | 6 | 6 months, 2 weeks ago | ||
Problem with Astra Site Builder after updating plugins Toolset Blocks and Forms
1
2
Started by: matthiasK-3 in: Toolset Professional Support |
2 | 18 | 7 months ago | ||
Problem with Astra Site Builder after updating plugins Toolset Blocks and Toolse
Started by: matthiasK-3 in: Toolset Professional Support |
2 | 10 | 9 months ago | ||
Container background image | Display on mobile devices
Started by: matthiasK-3 in: Toolset Professional Support |
2 | 5 | 2 years ago | ||
Display custom user field conditionally
Started by: matthiasK-3 in: Toolset Professional Support |
2 | 5 | 3 years, 10 months ago | ||
View on Users with a specific custom type role
Started by: matthiasK-3 in: Toolset Professional Support |
2 | 3 | 3 years, 10 months ago | ||
Slider with dynamic content: entire container as a link creates trouble
Started by: matthiasK-3
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 3 years, 10 months ago | ||
Query filter: Posts modified within the last 4 weeks
Started by: matthiasK-3
in: Toolset Professional Support
Problem: The issue here is that the user wanted to query their posts that were modified in the last 4 weeks using views. Solution: In order to do this you will need to use the view wpv_filter_query hook. Have a look at the hook example below. function tssupp_filter_query($view_args, $view_settings, $view_id) { $view_ids = array( 123, 456 ); // Edit for View IDs to apply to if ( in_array($view_id, $view_ids) ) { $view_args['date_query'] = array( 'after' => '4 weeks ago', 'column' => 'post_modified' ); } return $view_args; } add_filter('wpv_filter_query', 'tssupp_filter_query', 101, 3); Add this to your Toolset custom code section in Toolset->Settings -> Custom Code and ensure that you've clicked on activate after saving. You will need to change the 123,456 to the ID of your view that you want this hook to apply to. |
2 | 3 | 3 years, 10 months ago | ||
Previous / Next links do not fit to View order
Started by: matthiasK-3 in: Toolset Professional Support |
2 | 3 | 3 years, 11 months ago | ||
Single Field with Post Date: How to localize?
Started by: matthiasK-3
in: Toolset Professional Support
Problem: Solution: [wpv-post-date format="F jS Y"] Relevant Documentation: |
2 | 5 | 3 years, 11 months ago | ||
Adding a dynamic link to a dynamic heading
Started by: matthiasK-3 in: Toolset Professional Support |
2 | 3 | 3 years, 11 months ago |