• Resolved karenbeth

    (@karenbeth)


    Hello,
    I am wondering how to move the product titles above the thumbnail pic. Currently, the title is below the pic and the description follows it.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello!
    try adding this to functions.php, in your active theme.
    THIS will change the template for all product listing!

    
    function product_change_title_position(){
    remove_action('woocommerce_shop_loop_item_title','woocommerce_template_loop_product_title');
    add_action('woocommerce_before_shop_loop_item_title','woocommerce_template_loop_product_title', 5);
    }
    add_action('init','product_change_title_position');
    
    Thread Starter karenbeth

    (@karenbeth)

    You are a lifesaver! Thank you so Much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Move product titles above thumbnail’ is closed to new replies.