Yoshifumi Yamada
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 |
---|---|---|---|---|---|
permalink for the custom post
Started by: Yoshifumi Yamada in: Toolset Professional Support |
2 | 2 | 6 years, 1 month ago | ||
Toolset erros
Started by: Yoshifumi Yamada in: Toolset Professional Support |
2 | 3 | 6 years, 1 month ago | ||
short code for the total number of results after searching the posts
Started by: Yoshifumi Yamada in: Toolset Professional Support |
2 | 2 | 6 years, 2 months ago | ||
JS Editor
Started by: Yoshifumi Yamada in: Toolset Professional Support |
2 | 11 | 6 years, 3 months ago | ||
How to make specified hierarchal taxonomies views?
Started by: Yoshifumi Yamada
in: Toolset Professional Support
Problem: The issue here is that the user wanted to remove the 3rd level taxonomies from their filters. Solution: Unfortunately for the filters there isn't a way to control the hierarchy output for this. |
2 | 6 | 6 years, 3 months ago | ||
How to build hierarchal taxonomies with check box
Started by: Yoshifumi Yamada
in: Toolset Professional Support
Problem: Solution: For example: [wpv-control-post-taxonomy taxonomy="replace-taxonomy-slug" type="checkboxes" url_param="wpv-property-type" output="legacy"] Relevant Documentation: |
2 | 3 | 6 years, 3 months ago | ||
Setting empty search result by the default page
Started by: Yoshifumi Yamada
in: Toolset Professional Support
Problem: Solution: Please try to add following code to your current theme's functions.php file. add_filter( 'wpv_filter_query', 'show_empty_results_default_func', 10,2 ); function show_empty_results_default_func( $query_args, $setting ) { if($setting['view_id'] == 9999){ if( !isset($_GET['wpv_view_count'])){ $query_args['post__in'] = array(0); } } return $query_args; } Where: Relevant Documentation: |
2 | 3 | 6 years, 3 months ago | ||
How to group posts output with a View by taxonomy term?
Started by: Yoshifumi Yamada
in: Toolset Professional Support
Problem: Vol Number 1 • Newsletter name A • Newsletter name B Vol Number 2 • Newsletter name C • Newsletter name D Solution: The outer View is a taxonomy View (which lists taxonomy terms). In the output section the title of each term is displayed and a second, nested, View is inserted. This second View displays posts, and includes a Query Filter to only show posts where the taxonomy term is set by the outer View. |
2 | 3 | 6 years, 4 months ago |