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

    (@jahidulhassan)

    Hi @alexliii,

    The code that you have shared is working just perfectly. Please make sure to put the code to your child theme’s functions.php file without this – for remove Seller info tab on product page in dokan plugin: line.

    The below-mentioned code is working fine on my local environment to hide the seller info tab from the single product page.

    add_filter( 'woocommerce_product_tabs', 'dokan_remove_seller_info_tab', 50 );
    function dokan_remove_seller_info_tab( $array ) {
      unset( $array['seller'] );
      return $array;
    }

    I hope this information will help. Thanks!

    Plugin Support Jahidul Hassan Mojumder

    (@jahidulhassan)

    Hi @alexliii,

    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 ‘Critical Error’ is closed to new replies.