New Landing How can we help? Themeforest Theme Support Joyn Remove Reviews on product page

Viewing 7 posts - 1 through 7 (of 7 total)
  • Posted in: Joyn
  • #287827
    [email protected]
    Member
    Post count: 18

    I have tried all the suggested Custom Css but no luck. I use

    .archive .post-date, .category .post-date { display: none !important; }
    .single-product .article-share.product-share, .single-product .product_meta, .single-product #product-accordion {
    display: none !important;

    to remove everything else to the right of the image (belov the description). But if i also want to remove Reviews. How

    #287831
    [email protected]
    Member
    Post count: 18

    Also want to remove entire tab section to the right of the image. Both reviews and desription

    #287832
    David Martin – Support
    Moderator
    Post count: 20834

    You can use this:

    #product-accordion .panel:last-of-type {
        display: none;
    }
    #287889
    [email protected]
    Member
    Post count: 18

    Not workning for the description. Some other suggestion

    Attachments:
    You must be logged in to view attached files.
    #287971
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please paste this php code at functions.php of child theme.

    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['reviews'] ); 			// Remove the reviews tab
        unset( $tabs['additional_information'] );  	// Remove the additional information tab
    
        return $tabs;
    
    }

    Thanks
    Mohammad

    #287977
    [email protected]
    Member
    Post count: 18

    Thanks. I found this custom css

    .woocommerce div.product .woocommerce-tabs {
    height: 0;
    visibility: hidden;
    }

    and it works fine

    #287985
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    I am glad 🙂 that you managed to resolve the issue.
    Thanks
    Mohammad

Viewing 7 posts - 1 through 7 (of 7 total)

You must be logged in and have valid license to reply to this topic.

License required for the following item
Login and Registration Log in · Register