@ crownprinceofdisco
No worries, glad it helped you out. Following on from this:
The filter didn’t work on the WooCommerce Cart & Checkout pages. These use the standard page template within your theme so in order to remove the title from these, you can use the is_cart() & is_checkout() functions to detect if we’re on those pages.
In my theme, I wanted to remove the title from the cart & checkout pages so in my page.php file, I replaced <?php the_title(): ?> with :
<?php
//If This Is Not WooCommerce Cart or Checkout
if(!is_cart() && !is_checkout()) {
//Write Out The Title
the_title();
//End If This Is Not WooCommerce Cart or Checkout
}
?>
Hope this helps ??