By default the shop link added in the breadcrumbs is based on your defined Shop page under the WooCommerce settings.…
You can now define your WooCommerce card style via the Customizer! This snippet allows you to define a card style…
The following custom CSS can be used to modify the default product quantity input field arrows.
This snippet will disable the default placeholder image displayed by WooCommerce whenever a product doesn't have a defined featured image.
The following snippet can be used to display the WooCommerce short product description in the product entry (below the title).…
By default the Total theme displays an add to cart button when hovering over the product image for product entries.…
By default WooCommerce displays a counter of products inside a category when viewing category entries besides the title. If you…
By default the WooCommerce product slider will move up and down to match the height of the currently displayed picture.…
The WooCommerce search results page uses the same search template as all the shop archives which you can alter at…
The following snippet will remove the Additional Information tab from WooCommerce single products page and this snippet will work with…
This code snippet will allow you to override all WooCommerce single product content with a Templatera template.
If for some reason you wish to remove the WooCommerce thumbnails from the entries (shop/archive/related) you can do so using…
If for some odd reason you need to remove the links to your WooCommerce products from the entries you can…
By default the theme uses the is_woocommerce() conditional for displaying the WooCommerce sidebar on the website. However, WooCommerce doesn't treat…
// Insert a show all button below the products (change the hook to fit your needs) add_action( 'wpex_hook_content_bottom', function() {…
By default in the Total theme all category/term descriptions display in the main page header title area as the subheading.…
add_action( 'woocommerce_review_order_before_payment', function() { echo '' . esc_html__( 'Payment Options' ) . ''; } );
The snippet below will alter the default WooCommerce products (this will work with ANY theme) so that they will display…
Masonry layout isn't supported by default on the WooCommerce shop because it could cause issues with 3rd party scripts but…
add_action( 'wpex_hook_header_after', function() { if ( ! is_singular( 'product' ) || ! function_exists( 'wpex_get_first_term_id' ) || ! function_exists( 'wpex_get_term_thumbnail_id' )…
IMPORTANT: Since Total 4.9+ this script is loaded in globally by default inside the theme's main WooCommerce script.
The snippet below is an example of how you could add custom settings to the default WooCommerce single product editor…
add_action( 'wp_head', function() { // Only add brand markup on products if ( ! is_singular( 'product' ) ) { return;…
IMPORTANT: This can now be done via the Customizer!!This snippet will move the additional information tab in WooCommerce products to…
The following snippet will remove the default WooCommerce terms and conditions toggle and instead link to the actual page.