Hi @yitzchokgoldsmith,
How do I switch the shopping cart on the top left of my home page to only appear on the shopping page?
This can be done via custom CSS. You can add these custom CSS code in Appearance > Customize > Additional CSS
@media only screen and (min-width: 560px) {
.woocommerce-menu-container {
display: none !important;
}
body.post-type-archive-product .woocommerce-menu-container {
display: block !important;
}
}
@media only screen and (max-width: 559px) {
label#toggle-cart {
display: none !important;
}
body.post-type-archive-product label#toggle-cart {
display: inline-block !important;
}
}
To change the URL for your shop page, you can change the URL or slug by editing the shop page. Here is a screenshot for reference: https://d.pr/i/HV0s21
Instead of using spaces, please use - incase you wish to use space e.g my-shop-page
-
This reply was modified 6 years, 4 months ago by
Tseten a11n.
We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.