Home Forums WoodMart support forum Change title and brand position

Change title and brand position

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #79747

    drkshdw
    Participant

    Hi xtemos,

    I want to change position title product in shop. Title product move to below and brand title move to above. How to move them?

    Regards

    #79754

    Artem Temos
    Keymaster

    Hi,

    Could you please provide us a screenshot what exactly you want to move? And send us a link so we can check what we can do there.

    Regards

    #79756

    drkshdw
    Participant

    Here:

    I just want to exchange the position

    #79760

    Artem Temos
    Keymaster

    You need to copy the file woodmart/woocommerce/content-product-icons.php to the child theme and change this code

    <?php
    	/**
    	 * woocommerce_shop_loop_item_title hook
    	 *
    	 * @hooked woocommerce_template_loop_product_title - 10
    	 */
    	do_action( 'woocommerce_shop_loop_item_title' );
    ?>
    <?php
    	woodmart_product_categories();
    	woodmart_product_brands_links();
    ?>

    to this one

    <?php
    	woodmart_product_categories();
    	woodmart_product_brands_links();
    ?>
    <?php
    	/**
    	 * woocommerce_shop_loop_item_title hook
    	 *
    	 * @hooked woocommerce_template_loop_product_title - 10
    	 */
    	do_action( 'woocommerce_shop_loop_item_title' );
    ?>
    #79762

    drkshdw
    Participant

    Just tried but doesn’t work http://prntscr.com/l02qbx am I wrong?

    #79800

    Hello,

    Please paste the file into the Woocommerce folder. You should have such a route woocommerce/content-product-icons.php

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)