Edit post type form in page
Started by: dimitrisb-2
in: Toolset Professional Support
2
4
4 years, 7 months ago
Shane
How do I remove restaurants, points of interest, etc. from my Google Map?
Started by: jonathanK-8
in: Toolset Professional Support
2
3
4 years, 7 months ago
jonathanK-8
featured image on blog page
Started by: weatherlyB
in: Toolset Professional Support
Quick solution available
Problem:
Use featured image shortcode in [wpv-conditional] shortcode.
Solution:
You can use [wpv-post-featured-image output='url'] featured image URL shortcode insider [wpv-conditional] shortcode
Relevant Documentation:
2
7
4 years, 7 months ago
weatherlyB
Repeating Field block doesn’t display any Custom Field options
Started by: chrisH-14
in: Toolset Professional Support
Quick solution available
Problem: I am not able to find any fields from my Repeatable Field Group (RFG) when I try to select a dynamic source for a Block.
Solution: If you want to loop over RFGs, you'll need to use a View. Some blocks are designed to work with fields that allow multiple values, but not individual fields in an RFG. The type of block you are trying to insert will determine which type of "repeating" field is allowed for dynamic sources.
2
5
4 years, 7 months ago
chrisH-14
Help with "Creating a Custom Search in WordPress"
Started by: davidM-65
in: Toolset Professional Support
2
2
4 years, 7 months ago
Minesh
Best practices for child content templates layout with the block editor
Started by: XavierB6433
in: Toolset Professional Support
2
4
4 years, 7 months ago
Christian Cox
image and text in map markers
Started by: Relato_ES
in: Toolset Professional Support
2
8
4 years, 7 months ago
Relato_ES
Conditional filters on search view
Started by: avansisI-2
in: Toolset Professional Support
2
5
4 years, 7 months ago
avansisI-2
Accordion inside taxonomies on search view
Started by: avansisI-2
in: Toolset Professional Support
2
3
4 years, 7 months ago
avansisI-2
image sizes
Started by: szilardN
in: Toolset Professional Support
2
4
4 years, 7 months ago
Waqar
Slider images
Started by: Puntorosso
in: Toolset Professional Support
2
5
4 years, 7 months ago
Puntorosso
Query filter: Posts modified within the last 4 weeks
Started by: matthiasK-3
in: Toolset Professional Support
Quick solution available
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
4 years, 7 months ago
matthiasK-3
Social Share Icons Not Showing
Started by: DaveR6137
in: Toolset Professional Support
2
8
4 years, 7 months ago
DaveR6137
Conflict between WP File Manager and Blocks
Started by: umbertoZ
in: Toolset Professional Support
2
6
4 years, 7 months ago
umbertoZ
Form email notification logic options
Started by: leilaG
in: Toolset Professional Support
2
3
4 years, 7 months ago
leilaG