• I don’t know why there are so many negative and average reviews. Maybe indeed this plugin is hit or miss depending on theme. Simple to set up and does what it should with one exception, which I handled by this snippet put in functions.php:

    // Don’t show title on Woocommerce’s shop page, which is not handled by title removing plugins.
    add_filter( ‘woocommerce_show_page_title’, ‘not_a_shop_page’ );
    function not_a_shop_page() {
    return boolval(!is_shop());
    }

    • This topic was modified 5 years, 8 months ago by taisho.
  • The topic ‘Works great on Storefront theme for Woocommerce’ is closed to new replies.