Hiding entry title while showing product title in woocommerce product page

I followed a previous support thread for hiding the entry title using addition css on my main pages to avoid having the work home, contact, ect in the center of the page. I realized this code also made the title of my products on woocommerce product pages disappear.

Is there a way to keep the entry title hidden on the main pages while allowing the product titles to be enabled in woocommerce?

see attached screen shots

www.foreverflowerdesignsbytara.com

Thanks!

Hi @stoble,

I hope you are well today and thank you for your question.

Is there a way to keep the entry title hidden on the main pages while allowing the product titles to be enabled in woocommerce?

Yes to achieve this please remove the CSS code that you used previously and try adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


body.home h1.entry-title {
    display: none;
}

Best Regards,
Movin