Archived topic
Page Title can't be removed
9 replies · Started by Dave on June 11, 2016
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
Hi
This should do it for you.
Thanks - I just added that using the Simple CSS plugin and it didn't seem to work.
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.
PS - same thing on https://teepimp.com too
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?
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;
}
You can use CSS for that:
.woocommerce-result-count {
display: none;
}
That worked perfectly... thanks!
You're welcome :)
