christopherO-2
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 update the plugins
Started by: christopherO-2 in: Toolset Professional Support |
2 | 2 | 5 years, 7 months ago | ||
Show toolset custom field in product_category shortcode results
Started by: christopherO-2
in: Toolset Professional Support
Problem: I would like to add a custom field in the output of the WooCommerce product_category shortcode. Solution: There's not an easy way to customize this shortcode in Toolset. Instead, you can create a View of Products, filtered by Product Category term, set by a shortcode attribute. Then add your custom field in the Loop editor along with the post title with link, featured image, price, and add to cart button. Relevant Documentation: |
2 | 3 | 5 years, 11 months ago | ||
“Manual paragraphs” setting showing empty p tags in content template
Started by: christopherO-2
in: Toolset Professional Support
Problem: tags in the Content Template. Solution: remove_filter( 'the_content', 'wpautop' ); add_filter( 'the_content', 'wpautop' , 12); add_filter('the_content', 'remove_empty_p', 20, 1); function remove_empty_p($content){ $content = force_balance_tags($content); return preg_replace('#<p>\s*+(<br\s*/*>)?\s*</p>#i', '', $content); } 2. You can also try [wpv-noautop] shortcode and place all your content inside this: Relevant Documentation: |
2 | 8 | 7 years, 6 months ago | ||
Show formatted WooCommerce product description without the tabs
Started by: christopherO-2
in: Toolset Professional Support
Problem: I would like to display the full, formatted product description of a WooCommerce product. Solution: Use the wpv-post-body shortcode. [wpv-post-body view_template="None"] Relevant Documentation: |
2 | 5 | 7 years, 6 months ago |