Valeriia
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 |
---|---|---|---|---|---|
Can’t find POST EDIT LINK in Views
Started by: Valeriia
in: Toolset Professional Support
Problem: Solution: This can be done by following the instructions in the link below. |
2 | 3 | 5 years, 9 months ago | ||
Can not edit posts after update, fatal error
Started by: Valeriia
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 5 years, 11 months ago | ||
Display scheduled posts in relationship
Started by: Valeriia in: Toolset Professional Support |
2 | 9 | 6 years ago | ||
Issues with custom product templates using WooCommerce Views
Started by: Valeriia in: Toolset Professional Support |
2 | 5 | 6 years, 2 months ago | ||
Last update broke a lot of things
Started by: Valeriia in: Toolset Professional Support |
2 | 4 | 6 years, 2 months ago | ||
Woocommerce Views Archive issue
Started by: Valeriia in: Toolset Professional Support |
1 | 2 | 6 years, 2 months ago | ||
toolset_get_related_posts: sorting and querying by meta_key not working
Started by: Valeriia
in: Toolset Professional Support
Problem: I would like to use the new post relationships API to get results sorted by post date, but it doesn't appear to be working. Solution: The new toolset_get_related_posts API doesn't currently support "date" as an option for ordering. Instead, the toolset_relationships parameters can be added to a standard WP_Query as described in the link below. Relevant Documentation: |
2 | 7 | 6 years, 3 months ago | ||
See the parent or children in the admin column
Started by: Valeriia in: Toolset Professional Support |
2 | 3 | 6 years, 3 months ago | ||
Support ticket is not getting any reply for 3 days already!
Started by: Valeriia in: Toolset Professional Support |
1 | 2 | 6 years, 4 months ago | ||
Can't grad datepicker selection with jQuery
Started by: Valeriia in: Toolset Professional Support |
2 | 4 | 6 years, 4 months ago | ||
Can’t update
Started by: Valeriia
in: Toolset Professional Support
Problem: The issue here is that the user is getting invalid subscription when they already registered their plugin and have a valid account Solution: Our team is already aware of this issue and they are working on fixing this. However the plugins will continue to operate as normal. |
2 | 5 | 6 years, 4 months ago | ||
WYSIWYG field does not render shortcodes?
Started by: Valeriia
in: Toolset Professional Support
Problem: I have inserted a shortcode in a WYSIWYG field's contents, but when I try to output the WYSIWYG field using PHP, the shortcode is simply written to the page. I would like to echo the WYSIWYG field and render the shortcodes in its content. Solution: Use the do_shortcode function to parse the WYSIWYG field contents and render the interior shortcodes: $field = get_post_meta(12345, 'wpcf-wysiwyg', true); echo do_shortcode($field); Relevant Documentation: |
3 | 13 | 6 years, 5 months ago | ||
Custom Fields Group page
Started by: Valeriia in: Toolset Professional Support |
2 | 4 | 6 years, 5 months ago | ||
Make the date field display the day of the week?
Started by: Valeriia in: Toolset Professional Support |
2 | 3 | 6 years, 5 months ago | ||
Get post parent with new Post Relationships API (php)
Started by: Valeriia
in: Toolset Professional Support
Problem: I would like to get the parent post Course of the current post Product using the new Post Relationships API, but it doesn't seem to be working. I have tried both of these syntaxes: $course = toolset_get_parent_post_by_type( $product, 'course' ); $courses = get_posts( array( 'post_type' => 'course', 'numberposts' => -1, 'toolset_relationships' => array( 'role' => 'parent', 'related_to' => $product_id, 'relationship' => array( 'course', 'product' ) ), ) ); Solution: In this case, the relationships were created in the new system, so toolset_get_parent_post_by_type is not appropriate. The toolset_get_parent_post_by_type API is intended for use with legacy relationships, or relationships that were migrated from the legacy system. When specifying the relationship to query, the array syntax is intended for legacy relationships as well. The best approach in this case is to use the toolset_get_related_posts API, and the relationship slug instead of the post type slug array: $product = get_post(69); $course = toolset_get_related_post( $product, 'your-relationship-slug', 'parent'); Relevant Documentation: |
2 | 7 | 6 years, 5 months ago |