Sebastien
Support threads created in the last 30 days: 1
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
The Toolset Database doesn't work
Started by: Sebastien in: Toolset Professional Support |
2 | 7 | 3 weeks, 6 days ago | ||
Link image not working
Started by: Sebastien
in: Toolset Professional Support
Problem: I have added several image blocks in a Content Template, and I would like to use the image link feature to create links from each image. However, several of the links do not work correctly on the front-end of the site. Solution: When setting up the Content Template, select a post that contains information for all the available links and reset the image link URL configurations based on that post. If no posts contain all the available links, you may need to temporarily adjust one of the posts to create the necessary dynamic link URLs, then reset that post's content after saving the template. |
2 | 3 | 3 years, 7 months ago | ||
Customize formatting options in WYSIWYG fields
Started by: Sebastien in: Toolset Professional Support |
3 | 5 | 6 years ago | ||
Using multiple post relationship filters in Custom Search ?
Started by: Sebastien
in: Toolset Professional Support
Problem: But when I'm trying to add a second post relationship filter, the button is greyed. Solution: It has been put into our to-do list as a feature request, and has already raised our developer's attention. See the reply from our developers: https://toolset.com/2018/05/toolset-post-relationships-release/#comment-344869 Relevant Documentation: |
5 | 8 | 6 years, 1 month ago | ||
Form outputs unwanted parent post ID in select dropdowns
Started by: Sebastien
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 4 months ago | ||
Toolset breaks OceanWP layout with overriding css
Started by: Sebastien in: Toolset Professional Support |
1 | 2 | 6 years, 5 months ago | ||
Custom search filter inserts unwanted backslash before apostrophe
Started by: Sebastien in: Toolset Professional Support |
2 | 8 | 6 years, 7 months ago | ||
Access Post groups: Template layout not working for guest users
Started by: Sebastien
in: Toolset Professional Support
Problem: The problem here is that the custom post Groups that the user created in Access are not working when the Yoast plugin is installed. Solution: I actually have a workaround for this. This issue was reported to our development team some time ago . What is required is for your to replace the helper.php file in the cred plugin with this one. The helper file can be found in types-access/includes/ |
3 | 6 | 6 years, 8 months ago | ||
Filter CPT by grandparent CPT
Started by: Sebastien
in: Toolset Professional Support
Problem: I created a View of results filtered by post relationship. When this View is shown on the site, all results are shown until someone selects a filter. I would like to only show results that belong to a specific grandparent. Solution: You can use a URL parameter to predefine a grandparent post ID, or you can add some custom code that hides all results until at least one filter is selected. Here is that custom code: add_filter( 'wpv_filter_query_post_process', 'drop_empty_search_query_post_process', 10, 3 ); function drop_empty_search_query_post_process( $query, $view_settings, $view_id ) { $ids = array(1234,5678); if (in_array($view_id, $ids)){ if ( // taxonomy filter needs to check for not '0' as well as not empty ( isset($_GET['wpv-relationship-filter-fr-region']) && $_GET['wpv-relationship-filter-fr-region'] != '0' ) || // taxonomy filter needs to check for not '0' as well as not empty ( isset($_GET['wpv-relationship-filter-int-country']) && $_GET['wpv-relationship-filter-int-country'] != '0' ) ) { } else { $query->posts = array(); $query->found_posts = 0; $query->post_count = 0; } } return $query; } Replace 1234,5678 with a comma-separated list of Views where you want to apply this custom filter. Relevant Documentation: |
2 | 7 | 6 years, 9 months ago | ||
Strange and unwanted child to parent post conversion
Started by: Sebastien
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 6 years, 9 months ago |