alexG-4
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Ordering a View by a relationship field
Commencé par : alexG-4 in: Toolset Professional Support |
2 | 4 | Il y a 4 années et 8 mois | ||
Displaying Nested Views
Commencé par : alexG-4 in: Toolset Professional Support |
2 | 6 | Il y a 4 années et 9 mois | ||
Relationship form not returning to same page after submission
Commencé par : alexG-4 in: Toolset Professional Support |
2 | 10 | Il y a 4 années et 9 mois | ||
Created tabbed content
Commencé par : 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 | Il y a 4 années et 9 mois | ||
Converting to Blocks from Starter Theme and Layouts
Commencé par : alexG-4 in: Toolset Professional Support |
2 | 3 | Il y a 4 années et 9 mois | ||
Cred Conditions using attributes of Generic Select selections
Commencé par : alexG-4 in: Toolset Professional Support |
2 | 11 | Il y a 5 années et 5 mois | ||
Using jQuery to populate a relationship field in a form
Commencé par : alexG-4 in: Toolset Professional Support |
2 | 11 | Il y a 5 années et 6 mois | ||
Showing an alert during form complete
Commencé par : alexG-4 in: Toolset Professional Support |
2 | 5 | Il y a 5 années et 6 mois | ||
Accessing the « display text » of a Select field
Commencé par : 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 | Il y a 5 années et 6 mois | ||
Using $query_args to filter for a taxonomy value
Commencé par : 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 | Il y a 5 années et 6 mois | ||
Including an "add new" option when selecting a relationship in a form
Commencé par : alexG-4 in: Toolset Professional Support |
2 | 3 | Il y a 5 années et 7 mois | ||
Search & Pagination Reset not working when View is enclosed in table tags
Commencé par : 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 | Il y a 5 années et 7 mois | ||
Using cred_delete_post_link in PHP but NOT with echo
Commencé par : 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 | Il y a 5 années et 8 mois | ||
Cred CRED Form Programatically
Commencé par : 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 | Il y a 5 années et 8 mois | ||
A View is behaving differently when it is invoked from within another View
Commencé par : 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 | Il y a 5 années et 8 mois |