cristianR-3
Support threads created in the last 30 days: 1
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
The form reverts to default every time I try to save it.
1
2
Started by: cristianR-3 in: Toolset Professional Support |
2 | 17 | 5 years, 8 months ago | ||
Taxonomy dropdown in Form does not affect visibility of fields in conditional group
Started by: cristianR-3
in: Toolset Professional Support
Problem: I have a Form that includes a taxonomy select field. I have created a conditional group that should respond to that taxonomy selection, but it doesn't work. If I change the taxonomy field to a checkboxes group, it works. Solution: There is currently a problem where flat taxonomies do not work well with conditional groups in Forms. The workaround is to transform flat taxonomies into hierarchical taxonomies, and use the term ID in your conditional code. [cred_show_group if="( $(job-type) eq '12345' )" mode="slide"] ... [/cred_show_group] Relevant Documentation: |
2 | 5 | 5 years, 9 months ago | ||
I want to organize the store front by product categories/subcatogiries
Started by: cristianR-3
in: Toolset Professional Support
Problem: Solution: You then create a custom product categories archive to display products for that category. At the top of that custom archive you insert another View, much like the first, but this time to display the child product category links, achieved using a Query Filter where the taxonomy parent is set by the current archive page. You can see a fuller description of the solution here: https://toolset.com/forums/topic/how-do-i-link-a-filtered-category-link-to-a-page-other-than-a-wp-archive/#post-1119062 |
2 | 9 | 5 years, 11 months ago | ||
How to display a slider from images in a repeatable field group?
Started by: cristianR-3
in: Toolset Professional Support
Problem: Solution: For the Content Selection choose the repeatable field group, and output its image and caption fields in the Loop Output section. Relevant Documentation: |
2 | 13 | 6 years, 2 months ago | ||
WooCommerce pages do not display correctly
Started by: cristianR-3
in: Toolset Professional Support
Problem: The issue here is that the user's theme header was overflowing with the woocommerce content. Solution: To resolve this all that was needed was to rebuild a header in Layouts. |
2 | 7 | 6 years, 6 months ago | ||
Collapsed Accordions on Page Load
Started by: cristianR-3 in: Toolset Professional Support |
2 | 5 | 6 years, 7 months ago | ||
Frist post Excerpt displaying after page title
Started by: cristianR-3 in: Toolset Professional Support |
2 | 4 | 6 years, 8 months ago | ||
Random custom field items spilling on the page
Started by: cristianR-3
in: Toolset Professional Support
Problem: I have added Font Awesome icons to my View loop, but several of them appear to be out of place on the frontend. Solution: Check the syntax of each FA icon tag. In this case, one tag was left open in the loop, which led to some unexpected problems. Relevant Documentation: https://fontawesome.com/icons?d=gallery |
2 | 3 | 6 years, 8 months ago | ||
WordPress Post Archive not displaying correctly
Started by: cristianR-3 in: Toolset Professional Support |
2 | 4 | 6 years, 8 months ago | ||
Views is not compatible WooCommerce 3.3.0
Started by: cristianR-3
in: Types Community Support
Problem: I am unable to assign a Layout to the Products Archive when I have WooCommerce, Types, Views, Layouts, WooCommerce Views active with the Genesis framework and a child theme. I have selected the WooCommerce Views template for Product Archives in Toolset > WooCommerce Views. Solution: Activate the Genesis Connect for WooCommerce plugin and update to the latest versions of Genesis and WooCommerce. |
2 | 15 | 6 years, 9 months ago | ||
Cart Count when empty needs to display “0”
Started by: cristianR-3
in: Toolset Professional Support
Problem: The issue here was that the user was using the default woocommerce cart count with views, however he noticed that when the cart was empty it didn't display anything. He wanted it to show 0 when the cart was empty. Solution: I wrote my own cart count function and should be able to provide you with a bit more flexibility with this. Add this to your functions.php file and let me know if it helps. // Add Shortcode function cart_count() { if ( class_exists( 'WooCommerce' ) ) { global $woocommerce; ob_start(); $total = $woocommerce->cart->cart_contents_count; return $total; add_shortcode( 'cart_count', 'cart_count' ); This will just allow you to use the [cart_count] so you can remove all the conditionals from your layouts and just using this shortcode. |
2 | 16 | 6 years, 10 months ago | ||
Display user field (with happens to be embed media), when user is logged in.
Started by: cristianR-3 in: Toolset Professional Support |
2 | 8 | 7 years, 4 months ago |