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
Write 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;
}