• Dear community i have already a online shop with woocommerce but i would remove the heading text from the Product page on the Review Tab the heading text but how?
    I can remove the Additonal information heading text with
    add_filter( 'woocommerce_product_additional_information_heading', '__return_false' );
    But how can i change the Review Heading text? and how i can i find this Parameters or variable to customize WordPress

Viewing 4 replies - 1 through 4 (of 4 total)
  • There are two ways of doing this
    1) Using CSS
    Just put below code in your css file to hide the “Reviews” heading inside review tab.

    
    .woocommerce-Reviews-title{display:none}
    

    OR
    2) Using PHP
    Locate the file “single-product-reviews.php” in your themes folder which could be /themes/yourtheme/woocommerce/single-product-review.php and remove the h2 tag which is just below div id comments. If you cant find this file in your theme folder then, you need to copy this file from woocommerce plugin and put it there in theme. Check this link for referece.

    Thread Starter thinkdesign

    (@thinkdesign)

    @swayamtejwani

    Thanks for your fast answere dude but both Methodes wont work for me, i use the Avada theme but i cant find a solution

    Can you post your website link for us to check?

    Thread Starter thinkdesign

    (@thinkdesign)

    No dude i wouldnt post the Website link because of security, i tried something but it doesnt work but i dont know why, i post you the code from the source of the website then i analyse the code with chrome.

    <div id="reviews" class="woocommerce-Reviews">
    	<div id="comments">
    		<h3 data-fontsize="18" data-lineheight="27">Bewertungen</h3>
    
    		
    			<p class="woocommerce-noreviews">Es gibt noch keine Bewertungen</p>
    
    			</div>
    
    	
    		<p class="woocommerce-verification-required">Nur angemeldete Kunden, die dieses Produkt gekauft haben, dürfen eine Bewertung abgeben.</p>
    
    	
    	<div class="clear"></div>
    </div>
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Heading text in Woocommerce Review page’ is closed to new replies.