antonioC-7
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 |
---|---|---|---|---|---|
The layout of pages display in PC as in mobile (and they shouln't)
Started by: antonioC-7 in: Toolset Professional Support |
2 | 4 | 4 years, 2 months ago | ||
I’ve migrated to TS Blocks but I want to replicate something I did with TS Views
Started by: antonioC-7
in: Toolset Professional Support
Problem: Display view result as buttons. Solution: You can follow our document to add a view block, and use CSS codes to customize the loop items as buttons. Relevant Documentation: https://toolset.com/2019/06/visually-create-and-design-views-using-block-editor/ |
2 | 5 | 4 years, 6 months ago | ||
Add CPT between tags
Started by: antonioC-7 in: Toolset Professional Support |
2 | 6 | 4 years, 7 months ago | ||
Background color in content template
Started by: antonioC-7 in: Toolset Professional Support |
2 | 5 | 4 years, 8 months ago | ||
Content Template automatic assign to a CPT page
Started by: antonioC-7
in: Toolset Professional Support
Problem: Assign content templat to posts when import with "WP All Import" plugin. Solution: In each single post, there is a hidden custom field "_views_template", the field value is specific content template ID, you can try to setup that custom field as your specific content template ID when import. Relevant Documentation: |
2 | 3 | 4 years, 8 months ago | ||
Layout
Started by: antonioC-7 in: Toolset Professional Support |
2 | 7 | 4 years, 8 months ago | ||
Divi compatibility and alternatives
Started by: antonioC-7 in: Toolset Professional Support |
3 | 10 | 4 years, 8 months ago | ||
Show a custom search view with WP 5.1.1 and Divi 3.2.1
Started by: antonioC-7
in: Toolset Professional Support
Problem: I'm having trouble displaying a custom search View with Divi and Toolset Layouts. Solution: Don't use Toolset Layouts with Divi. Relevant Documentation: |
3 | 13 | 5 years, 8 months ago | ||
Use of different images depending on viewport
Started by: antonioC-7
in: Toolset Professional Support
Problem: I want to use different images according to the viewport size, and show them alternatively. For instance one pic for mobile and another for large screens. Is this possible? Solution: I suggest you try the attribute "srcset" and "sizes" attributes of the img HTML tag, for example: Views shortcode [wpv-post-featured-image size="large"] will be able to output the HTML image tags like this: https://toolset.com/forums/topic/use-of-different-images-depending-on-viewport/#post-1170311 Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-post-featured-image |
2 | 6 | 5 years, 11 months ago | ||
toolset views 2.7.1 instalation problem in WP 5.0
Started by: antonioC-7 in: Toolset Professional Support |
2 | 5 | 5 years, 11 months ago | ||
Introducing text into the page through custom fields or similar
Started by: antonioC-7 in: Toolset Professional Support |
2 | 2 | 6 years, 3 months ago | ||
how to show custom tag description in its archive page
Started by: antonioC-7
in: Toolset Professional Support
Problem: I'm customizing archive pages for custom tags and categories. I want to use the text in the field "description" of custom taxonomies to show it at the beginning of each archive page for this taxonomy, before the loop. Solution: In the term's archive page, you can display the description field of current term using Views shortcode [wpv-taxonomy-description] Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-taxonomy-description |
2 | 4 | 6 years, 3 months ago | ||
Showing prepopulated search results
Started by: antonioC-7
in: Toolset Professional Support
Problem: It needs some custom codes, for example, when user first loading the URL, you can use Views filter hook wpv_filter "wpv_filter_query" to trigger a custom PHP function, in this PHP function, prepopulate the search term and the search result. For example, you can add below codes into your theme/functions.php: add_filter('wpv_filter_query', 'my_func', 1, 3); function my_func($query_args, $view_settings, $view_id){ if($view_id == 123){ if(!isset($_GET['wpv_post_search'])){ $_GET['wpv_post_search'] = 'my search term'; } } return $query_args; } Please replace 123 with your Views's ID. Relevant Documentation: |
2 | 6 | 7 years ago |