• Resolved capilta

    (@capilta)


    Dear
    I want vendor management from the back only not from the front. So I want to remove vendor name from Cart page, checkout page, thanks out page and also change vendor name from customer order email.

    Thanks in Advanced

Viewing 1 replies (of 1 total)
  • Hi @capilta,

    If you want to remove the vendor name from the cart, checkout, thank you page, and customer order emails, then you can add the following code snippets at the bottom of the child theme’s functions.php file.

    remove_filter( 'woocommerce_get_item_data', 'dokan_product_seller_info' );
    remove_action( 'woocommerce_order_item_meta_start', 'dokan_attach_vendor_name' );
    remove_filter( 'woocommerce_shipping_package_name', 'dokan_change_shipping_pack_name' );

    Thank you!

Viewing 1 replies (of 1 total)
  • The topic ‘How can i remove vendor information from front’ is closed to new replies.