How can I delete the pricing and cart from my ecommerce site?

Hello,

We really like the shopify site and theme - However, we are not looking to sell online and want to leverage the SEO capabilities.

How do I remove the pricing, cart and add to cart?

Thanks!

Hi @KD1274 ,

You should remove all code references related to those functions, would you mind sharing your store’s URL so we can assist on that?

www.processandcontrols.com

Hi @KD1274

Just sent you a collaborator access, we will assess the complexity of the task and get this done shortly. In case the task turns out to be a bit more complex we will let you know.

Cheers!

1 Like

For the Warehouse Theme, add the following code to solve the request above:

a.product-item__action-button.button.button--small.button--primary {
    display: none;
}

button.product-item__action-button.button.button--small.button--primary {
    display: none;
}

.header__action-item.header__action-item--cart {
    display: none;
}

.product-form__payment-container {
    display: none;
}

#shopify-section-product-template > section > div.container.container--flush > div.product-block-list.product-block-list--small > div > div.product-block-list__item.product-block-list__item--manuals > div:nth-child(2) {
    display: none;
}

.header__action-list {
    display: none;
}

.product-form__info-list {
    display: none;
}

Cheers!

To remove pricing on collections:

.product-item__price-list.price-list {
    display: none;
}