You want to apply to the single product template page…
body.single-product {
background-image: none;
}
on the /shop/ page? The shop is an archive page and does not have a unique page ID Something like this may work, not sure how it will affect other pages.
body.archive.post-type-archive.post-type-archive-product {
background-image: none;
}
You may have to play around with some other classes. You can view them in with the “inspect” feature in chrome.
The goal is to have a class or string of classes unique to that “page view”.
]]>