alexG-4
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Ordering a View by a relationship field
Gestartet von: alexG-4 in: Toolset Professional Support |
2 | 4 | vor 4 Jahren, 8 Monaten | ||
Displaying Nested Views
Gestartet von: alexG-4 in: Toolset Professional Support |
2 | 6 | vor 4 Jahren, 8 Monaten | ||
Relationship form not returning to same page after submission
Gestartet von: alexG-4 in: Toolset Professional Support |
2 | 10 | vor 4 Jahren, 8 Monaten | ||
Created tabbed content
Gestartet von: 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 | vor 4 Jahren, 8 Monaten | ||
Converting to Blocks from Starter Theme and Layouts
Gestartet von: alexG-4 in: Toolset Professional Support |
2 | 3 | vor 4 Jahren, 9 Monaten | ||
Cred Conditions using attributes of Generic Select selections
Gestartet von: alexG-4 in: Toolset Professional Support |
2 | 11 | vor 5 Jahren, 5 Monaten | ||
Using jQuery to populate a relationship field in a form
Gestartet von: alexG-4 in: Toolset Professional Support |
2 | 11 | vor 5 Jahren, 5 Monaten | ||
Showing an alert during form complete
Gestartet von: alexG-4 in: Toolset Professional Support |
2 | 5 | vor 5 Jahren, 5 Monaten | ||
Accessing the „display text“ of a Select field
Gestartet von: 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 | vor 5 Jahren, 5 Monaten | ||
Using $query_args to filter for a taxonomy value
Gestartet von: 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 | vor 5 Jahren, 6 Monaten | ||
Including an "add new" option when selecting a relationship in a form
Gestartet von: alexG-4 in: Toolset Professional Support |
2 | 3 | vor 5 Jahren, 6 Monaten | ||
Search & Pagination Reset not working when View is enclosed in table tags
Gestartet von: 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 | vor 5 Jahren, 6 Monaten | ||
Using cred_delete_post_link in PHP but NOT with echo
Gestartet von: 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 | vor 5 Jahren, 7 Monaten | ||
Cred CRED Form Programatically
Gestartet von: 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 | vor 5 Jahren, 7 Monaten | ||
A View is behaving differently when it is invoked from within another View
Gestartet von: 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 | vor 5 Jahren, 8 Monaten |