takoL
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 |
---|---|---|---|---|---|
Multisite install: login screen when switching between sites after update
Started by: takoL in: Toolset Professional Support |
2 | 4 | 5 years, 8 months ago | ||
After update: edit toolset form > opens non-expert mode > overwrites all code
Started by: takoL in: Toolset Professional Support |
2 | 3 | 5 years, 9 months ago | ||
Views layout cannot be saved after update
Started by: takoL in: Toolset Professional Support |
2 | 6 | 5 years, 11 months ago | ||
Get related posts by author
Started by: takoL
in: Toolset Professional Support
Problem: I would like to get related posts, filtered by author, using the new post relationships API. Solution: Use the standard WP_Query with toolset_relationships criteria and post author filter added to the query. Relevant Documentation: https://toolset.com/documentation/customizing-sites-using-php/post-relationships-api/how-to-migrate-your-site-to-new-post-relationships/ |
2 | 3 | 6 years, 4 months ago | ||
Export/import access settings not effective for cred front end access settings
Started by: takoL in: Toolset Professional Support |
2 | 3 | 6 years, 4 months ago | ||
User-form error message: Sorry, you are not allowed to attach files to this post
Started by: takoL in: Toolset Professional Support |
2 | 2 | 6 years, 5 months ago | ||
get parent id using intermediary id in php
Started by: takoL
in: Toolset Professional Support
Problem: I would like to be able to get the ids of both related posts in a M2M relationship using the PHP Post Relationships API, when the intermediary post ID is known. Solution: Use the toolset_get_related_posts API to retrieve related post information using the intermediary ID like this: $book = toolset_get_related_posts( 123, 'book-library', 'intermediary', 1000000,0, array(), 'post_id', 'parent' ); // returns Array( [0] => 234 ) $library = toolset_get_related_posts( 123, 'book-library', 'intermediary', 1000000,0, array(), 'post_id', 'child' ); // returns Array( [0] => 345 ) Relevant Documentation: |
2 | 3 | 6 years, 6 months ago | ||
Update view results with ajax on archive page when filter form is in widget
Started by: takoL in: Toolset Professional Support |
2 | 4 | 6 years, 6 months ago | ||
Update AJAX results when filter values change not triggered
Started by: takoL
in: Toolset Professional Support
Problem: The issue here is that the user wanted to filter his prefiltered view with his frontend filters. Solution: This can be done normally by adding a query filter to your view and setting that query filter to get the value by shortcode attribute. Then you can add your frontend filters as normal. However when calling your view on the frontend you will provide the shortcode parameter so it can be prefiltered. Example [wpv-view name="view-1" wpvtaxonomy1="tax1"] |
2 | 6 | 6 years, 7 months ago |