Home Forums Themes Support Claue Extra information on product detail

Topic Resolution: Resolved
Viewing 7 reply threads
  • Author
    Posts
    • #21476

      Hi! I don’t want to show the extra information on the product detail page. I only want to show the reviews. How can i turn off the extra information?

       

      Thnx!

    • #21479

      Hi,

      Please add below code to claue-child > functions.php

      //Remove WooCommerce Tabs - this code removes all 3 tabs - to be more specific just remove actual unset lines 
      
      add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
      
      function woo_remove_product_tabs( $tabs ) {
      
          unset( $tabs['description'] );      	// Remove the description tab
      
          return $tabs;
      }

      Please refer this topic https://wpbeaches.com/hide-the-description-and-reviews-tabs-in-woocommerce-products/

      Best regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #21481

      Hi, Please add below code to claue-child > functions.php

      //Remove WooCommerce Tabs - this code removes all 3 tabs - to be more specific just remove actual unset lines 
      
      add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
      
      function woo_remove_product_tabs( $tabs ) {
      
          unset( $tabs['description'] );      	// Remove the description tab
      
          return $tabs;
      }

      Please refer this topic https://wpbeaches.com/hide-the-description-and-reviews-tabs-in-woocommerce-products/ Best regards

       

      I don’t have the child theme. How can i fix it anyway?

    • #21494

      Hi,

      The child theme included in the package you download from Envato, please download and extract.

      Best regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

      • #21563

        Can i install the child theme without losing any content?

    • #21569

      Hi,

      Yes, you can activate child theme without losing any content, but you have to re-arrange widget to old sidebar

      Best regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #21572

      Hi! I did all the above things, but the ‘extra information’ is still there. How can i fix it?

    • #21586

      Hi,

      Please change prev code to

      //Remove WooCommerce Tabs - this code removes all 3 tabs - to be more specific just remove actual unset lines 
      
      add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
      
      function woo_remove_product_tabs( $tabs ) {
      
          unset( $tabs['description'] );      	// Remove the description tab
          unset( $tabs['additional_information'] );  	// Remove the additional information tab
      
          return $tabs;
      
      }

      Best regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #21736

      Thnx!

Viewing 7 reply threads

You must be logged in to reply to this topic.