[Resolved] Page Title can't be removed

Home Forums Support [Resolved] Page Title can't be removed

Home Forums Support Page Title can't be removed

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #201066
    Dave

    Hi Tom,
    I checked Hide Title on the main page of http://plrjunkie.com but “Shop” is still there – any ideas why it won’t go away?

    Thanks
    Dave

    #201067
    Jamal

    Hi

    This should do it for you.

    Agressively support the kind of work you want to see. Buy it. Talk about it. Review it.

    #201068
    Dave

    Thanks – I just added that using the Simple CSS plugin and it didn’t seem to work.

    #201069
    Jamal

    Ah sorry i was in a hurry as always. It should be

    .page-title {
        display:none;
    }

    Check some posts below that link for another possible solution.

    Agressively support the kind of work you want to see. Buy it. Talk about it. Review it.

    #201072
    Dave

    PS – same thing on https://teepimp.com too

    #201075
    Dave

    Great – that worked thanks…

    Do you know if there’s any way of getting rid of where it says “Showing all 6 results” which looks odd now, out on its own with no title above it?

    #201080
    Jamal

    I used below code on my site but it removes even sorting/ordering and i dont know of a way to just remove the result count. Give it a try though

    /*===Removes sort by and result count from product pages===*/
    remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
    function woocommerce_result_count() {
            return;
    }

    Agressively support the kind of work you want to see. Buy it. Talk about it. Review it.

    #201099
    Tom
    Lead Developer
    Lead Developer

    You can use CSS for that:

    .woocommerce-result-count {
        display: none;
    }
    #201531
    Dave

    That worked perfectly… thanks!

    #201584
    Tom
    Lead Developer
    Lead Developer
Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.