• Resolved Vee

    (@vinee89)


    Hi, how can i display vendor name just below the product title in single-product page. I tried looking up woocommerce hooks and found the hook for product-title. Could you please help me with the code that i should put in my child theme functions.php

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Add this to your themes functions.php

    remove_action( 'woocommerce_product_meta_start', array( 'WCV_Vendor_Cart', 'sold_by_meta' ), 10, 2 );
    add_action( 'woocommerce_single_product_summary',  array( 'WCV_Vendor_Cart', 'sold_by_meta' ), 6);

    cheers,

    Jamie

    Thread Starter Vee

    (@vinee89)

    It worked! Thanks a ton.

    Thread Starter Vee

    (@vinee89)

    Hi Jamie,

    One small request, can you help with removing the hyperlink from the sold_by_meta

    I dont want any url, just vendor name.

    Many thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Vendor Name Below Product Name’ is closed to new replies.