• Resolved blasyfeel

    (@blasyfeel)


    My website is built upon wordpress and woocommerce. I am using Dokan multivendor plugin. At the checkout page at the right side under the “Your order” section it shows first the product name then below that date and time of booking and below that the name of the vendor. I want to remove the function to show the name of the vendor in the checkout page.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Jahidul Hassan Mojumder

    (@jahidulhassan)

    Hi @blasyfeel,

    If you remove the vendor name from the checkout page, it will create confusion when there are products from different vendors on the cart as shown in this screenshot.

    However, if you still want to have this, you can add the below-mentioned code to your child theme’s functions.php file or use a code snippet plugin like this one.

    remove_filter( 'woocommerce_get_item_data', 'dokan_product_seller_info', 10, 2 );
    
    add_filter( 'dokan_shipping_package_name' , 'remove_vendor_name', 10, 4 );
    
    function remove_vendor_name( $shipping_label, $i, $package, $vendor ){
    	
    	$shipping_label = 'Shipping';
    	
    	return $shipping_label;
    }
    Plugin Support Yeasin Arafat

    (@yeasinarafathridoy)

    Hi?@blasyfeel,

    Due to inactivity, we are marking this topic as resolved. Feel free to open a new one if you face any further issues.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove the vendor text that shows up in checkout page of woocommerce?’ is closed to new replies.