mouneebS-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 |
---|---|---|---|---|---|
Custom filters with custom Taxonomy and Post field
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 6 | 4 years, 8 months ago | ||
Adding dynamic gallery
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 6 | 6 years, 1 month ago | ||
Need to add featured image as a backgroud
Started by: mouneebS-2
in: Toolset Professional Support
Problem: Solution: |
2 | 5 | 6 years, 2 months ago | ||
Need to show Divi content in the same form like sample
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 2 | 6 years, 2 months ago | ||
Need to show the full width template on view with Divi
Started by: mouneebS-2
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 3 | 6 years, 2 months ago | ||
I want to show specific category pages
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 3 | 6 years, 2 months ago | ||
Display featured products
1
2
Started by: mouneebS-2
in: Toolset Professional Support
Problem: The issue here is that the user has a view that is listing their products but wanted to filter this view to only list the featured woocommerce products. Solution: For this to work you must first create a view that would list all the products. Then you would add the following to your functions.php file 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; } Then you need to change the view_id to the ID of your view. Once you have done this then your view should only list the featured items. |
3 | 25 | 6 years, 3 months ago | ||
Split: show woo-commerce product archive in columns
1
2
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 18 | 6 years, 3 months ago | ||
Products in 2 columns not whole page
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 2 | 6 years, 3 months ago | ||
Customize woo-commerce product page
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 7 | 6 years, 3 months ago | ||
I need to design tabs shown by the wpv-woo-display-tabs shortcode
Started by: mouneebS-2
in: Toolset Professional Support
Problem: I would like to be able to customize the tabs produced by the wpv-woo-display-tabs-shortcode. Solution: The wpv-woo-display-tabs shortcode does not provide comprehensive customization options. You can disable reviews, but that's about all. This shortcode is basically a shortcut to place the standard WooCommerce product tabs in your template. Toolset does not alter those tabs, so customizations to the tab markup require custom code and knowledge of WooCommerce. Without using PHP, you can create your own custom CSS styles to override the deafult styles. You can add custom CSS to a child theme, or in the Customizer, or to an individual Content Template or View. Relevant Documentation: |
2 | 3 | 6 years, 3 months ago | ||
I need to make a template page but can't find similar to What I'm designing
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 7 | 6 years, 3 months ago | ||
wpv-woo-product-image
Started by: mouneebS-2 in: Toolset Professional Support |
2 | 3 | 6 years, 3 months ago |