Viewing 14 replies - 1 through 14 (of 14 total)
  • Hello @srikanth1122,

    You can follow the procedure on the video to hide the tab on the single product page

    Thank you 🙂

    Thread Starter srikanth1122

    (@srikanth1122)

    sir am using WordPress themes and dokan plugins for multi vendor in this cart page
    cart totals tab
    subtotal some amount
    shipping Vendor name
    Flat rate some amount
    shipped to some region
    total amount

    i want hide the shipping vendor name and shipping to some region
    am hide this in website
    but not hidden in mobile version

    if the code enter in CSS

    @media (max-width: 767px){
    .cart-collaterals .cart_totals table.shop_table.shop_table_responsive tr th {
    display: none;
    }
    }

    hidden shipping vendor name and shipping to region.

    here on problem is amount is showing but AMOUNT CAPTION(SUBTOTAL & TOTAL) Names not showing

    Thread Starter srikanth1122

    (@srikanth1122)

    Hello @srikanth1122 ,

    I am not too sure about your query but from your screenshot, it looks like you want to hide vendor name from checkout page & cart which can be done using this code in your functions.php file –

    remove_action( 'woocommerce_order_item_meta_start', 'dokan_attach_vendor_name', 10, 2 );
     remove_filter( 'woocommerce_get_item_data', 'dokan_product_seller_info', 10, 2 );

    Thank you 🙂

    Thread Starter srikanth1122

    (@srikanth1122)

    were can i paste this code plz tell me sir

    Hello @srikanth1122 ,

    You can paste this under your current active theme’s functions.php file at the very last.

    Thank you 🙂

    Thread Starter srikanth1122

    (@srikanth1122)

    Not working but am solved that problem and finally one problem is in order received details in product nane and vender name shows how can I hide that

    Hello @srikanth1122 ,

    Please provide a screenshot to illustrate your request so that I can understand it before suggesting anything.

    Thank you.

    Thread Starter srikanth1122

    (@srikanth1122)

    Thread Starter srikanth1122

    (@srikanth1122)

    Hello @srikanth1122 ,

    I can assure you that this code I shared will work to remove the vendor name from the checkout page’s vendor name –

    remove_action( 'woocommerce_order_item_meta_start', 'dokan_attach_vendor_name', 100, 2 );
     remove_filter( 'woocommerce_get_item_data', 'dokan_product_seller_info', 100, 2 );

    I just tested & it works properly.

    Thank you 🙂

    Thread Starter srikanth1122

    (@srikanth1122)

    were can i paste this code

    Hello @srikanth1122 ,

    You can paste this under your current active theme’s functions.php file.

    If you are not comfortable with these changes, please consult with an expert who can guide you to add the changes.

    Thank you 🙂

    Thread Starter srikanth1122

    (@srikanth1122)

    sir working this code
    remove_action( ‘woocommerce_order_item_meta_start’, ‘dokan_attach_vendor_name’, 10 );

    thank you sir

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘How to hide vender name on product details’ is closed to new replies.