Header title help and woocommerce shop Archive:Products help

Hello. How can I remove Archive: Products header completely from my website’s shop? http://hsa.hr/wordpress/trgovina/

In my website’s language it is displayed as Arhiva: Proizvodi

I want to remove it completely and add a custom title that would look more beautiful. How can I add a custom title to the woocommerce page?

Hello there,

I hope you are doing well today.

This seems very similar to your previous ticket so please refer to that one.

This CSS should help you to remove the title:


h3.page-title {
    display: none;
}

Best Regards,
Support

Thanks a lot, it worked for all the headers. However, the title “Vijesti” is still present on my news page in the page itself rather than just the header: http://hsa.hr/wordpress/blog-2/

How do I remove it so only my custom header stays for the title?

Hello there,

This should work there:


h1.entry-title {
    display: none;
}

Best Regards,
Support