alexG-4
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 |
---|---|---|---|---|---|
Ordering a View by a relationship field
Started by: alexG-4 in: Toolset Professional Support |
|
2 | 4 | 4 years, 9 months ago | |
Displaying Nested Views
Started by: alexG-4 in: Toolset Professional Support |
|
2 | 6 | 4 years, 10 months ago | |
Relationship form not returning to same page after submission
Started by: alexG-4 in: Toolset Professional Support |
|
2 | 10 | 4 years, 10 months ago | |
Created tabbed content
Started by: alexG-4
in: Toolset Professional Support
Problem: Is there no longer a toolset-way to created tabbed content? Solution: There isn't built-in tabs feature within Toolset Blocks plugin, but you can try with other Gutenberg plugin. for example: https://wordpress.org/plugins/kadence-blocks/ Relevant Documentation: |
|
2 | 3 | 4 years, 10 months ago | |
Converting to Blocks from Starter Theme and Layouts
Started by: alexG-4 in: Toolset Professional Support |
|
2 | 3 | 4 years, 10 months ago | |
Cred Conditions using attributes of Generic Select selections
Started by: alexG-4 in: Toolset Professional Support |
|
2 | 11 | 5 years, 6 months ago | |
Using jQuery to populate a relationship field in a form
Started by: alexG-4 in: Toolset Professional Support |
|
2 | 11 | 5 years, 6 months ago | |
Showing an alert during form complete
Started by: alexG-4 in: Toolset Professional Support |
|
2 | 5 | 5 years, 7 months ago | |
Accessing the “display text” of a Select field
Started by: alexG-4
in: Toolset Professional Support
Problem: The issue here is that the user wanted to display the "display text" of their select field. Solution: Unfortunately no this is not possible to do. |
|
2 | 5 | 5 years, 7 months ago | |
Using $query_args to filter for a taxonomy value
Started by: alexG-4
in: Toolset Professional Support
Problem: I would like to use wpv_filter_query to modify a View's query based on a taxonomy term slug. Solution: It should work with slugs or names. Example with name to show only featured products: add_filter( 'wpv_filter_query', 'featured_products',99,3 ); function featured_products( $query_args,$views_settings, $view_id) { if ($view_id == 10){ $query_args = array( 'post_type' => 'product', 'tax_query' => array( array( 'taxonomy' => 'product_visibility', 'field' => 'name', 'terms' => 'featured', 'operator' => 'IN' ), ), ); } return $query_args; } Relevant Documentation: https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_query |
|
2 | 5 | 5 years, 7 months ago | |
Including an "add new" option when selecting a relationship in a form
Started by: alexG-4 in: Toolset Professional Support |
|
2 | 3 | 5 years, 7 months ago | |
Search & Pagination Reset not working when View is enclosed in table tags
Started by: alexG-4
in: Toolset Professional Support
Problem: The issue here is that the user's table is not being generated correctly. Solution: In this user's case they were calling the open and closing table tags outside of the view. Try adding the table tag inside the view itself outside of the tags. |
|
2 | 4 | 5 years, 8 months ago | |
Using cred_delete_post_link in PHP but NOT with echo
Started by: alexG-4
in: Toolset Professional Support
Problem: The issue here is that the user wanted to render the delete link for a post using php. Solution: This can be done by having a look at my post below. |
|
2 | 11 | 5 years, 9 months ago | |
Cred CRED Form Programatically
Started by: alexG-4
in: Toolset Professional Support
Problem: The issue here is that the user wanted to know if it was possible to create a Cred from programatically. Solution: Unfortunately no this one is not possible to do. |
|
2 | 4 | 5 years, 9 months ago | |
A View is behaving differently when it is invoked from within another View
Started by: alexG-4
in: Toolset Professional Support
Problem: I have a View that is filtered by post relationship, based on a shortcode attribute. When I display the View on its own, the results show up as expected. However, if I nest the View inside another View, the results no longer appear. Solution: In this case, some custom code using the wpv_filter_query API was being applied too broadly and affecting the results of the nested View. Some conditional logic is required here to apply the filter more selectively. Relevant Documentation: |
|
2 | 11 | 5 years, 9 months ago |