i have a problem with my woocommerce, I cant remove the page title in the product on desktop view. Anyone know what can i do ? thank you very much
store
i have a problem with my woocommerce, I cant remove the page title in the product on desktop view. Anyone know what can i do ? thank you very much
store https://kingsport.ro
Share Improve this question asked Feb 1, 2019 at 13:43 Burlac NicuBurlac Nicu 12 Answers
Reset to default 1Write the CSS into style.css file
@media only screen and (min-width: 768px) {
.single-product .title-desc {
display: none;
}
}
.single-product
CSS will only work on single product details. It will not create any issue on other pages.
You can use below css to remove the title on desktop view through the media query
.post-type-archive-product .page-title {
display: none;
}