Hello!
I’m hoping I may get assistance with the following:
-
Removing the image counter on the product page < 1/2 >
-
When clicking on a product it zooms in and there is a circle in the top right. I would like that removed.
Thank you!
Main request: modify the product page by (1) removing the image counter (e.g., “1/2”) and (2) removing the zoom overlay’s circle icon.
Key actions and outcomes:
Other notes:
Status: Resolved. The image counter is hidden on mobile, and the zoom close button now displays an “X.”
Hello!
I’m hoping I may get assistance with the following:
Removing the image counter on the product page < 1/2 >
When clicking on a product it zooms in and there is a circle in the top right. I would like that removed.
Thank you!
Hi @ErhatRO
Could you please share the password of your store with me so I can check it?
Best,
Daisy
Hi @ErhatRO
To complete your requests, please follow these steps:
@media screen and (max-width: 768px){
product-info .product .slider-buttons.quick-add-hidden {
display: none;
}
}
Here is the result: https://prnt.sc/Z5blMaLP-G1m
Regarding issue number 2 you mentioned, that circle is the close button. If it’s hidden, you won’t be able to close the image. It’s essential to keep it visible for users to close the image or pop-up easily.
I hope this helps
Best,
Daisy
Hi @ErhatRO
Please add this code in the same place
@media screen and (max-width: 768px){
product-modal .product-media-modal__dialog button[aria-label="Close"]::after {
content: "X";
}
}
I hope this helps
Best,
Daisy
It says it cant be published
Hi @ErhatRO
Could you please try again with these steps
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above
Let me know if it works!
Best,
Daisy
Perfect! Thank you!