How to remove apps from quick add?

On my quick add theres a bunch of unnecessary apps that I want on my product page but I do not want on my quick add/view options

On my quick add I just want the products/variants quantity/add to cart and view full details

My website is Lexxyy.com

Hi @leoking

Most apps automatically inject their code into:

product.liquid
main-product.liquid
product-form.liquid

Your Quick Add uses a different template:

snippets/product-popup.liquid  
snippets/quick-add.liquid  
snippets/card-product.liquid  
product-modal.liquid

Apps are loading there because they detect a product form and attach scripts.

So how can I remove them?

@leoking please add this css to the very end of your base.css file and check

shopify admin->online store->themes->edit theme code->assets->base.css

.quick-add-modal__content .product .shopify-app-block{display:none !important; visibility:hidden;}

It doesn’t appear on the quick add but it messes up the product page version any idea how to fix this? Thanks

@leoking on which product page did you get this issue?

On all my product pages

@leoking which button did you click? Becuaae I could not see quick aadd button on product page

Hey @leoking

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
.quick-add-modal__content-info .timeline {
    display: none !important;
}
.quick-add-modal__content-info .time-cust {
    display: none !important;
}
.quick-add-modal__content-info .jdgm-carousel-wrapper {
    display: none !important;
}
</style>

RESULT:

If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

@leoking on mobile view it looks like this