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
Goal: Hide third-party app blocks in the Quick Add (modal/popup) while keeping them on the main product page.
Context/Root cause:
Proposed solutions:
.quick-add-modal__content .product .shopify-app-block{display:none !important; visibility:hidden;}.quick-add-modal__content-info .timeline, .time-cust, .jdgm-carousel-wrapper { display:none !important; }Status/Next steps:
Notes: Several screenshots illustrate before/after behavior; they are helpful but not strictly required to apply the CSS.
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:
<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