Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Disable Zoom (Not Hide) On Product Image On Mobile Dawn Theme 11.0

Solved

Disable Zoom (Not Hide) On Product Image On Mobile Dawn Theme 11.0

basically
Tourist
22 0 0

Need to disable zooming feature in product page in mobile, if possible need to disable on every page shopify Dawn theme 11.

Accepted Solution (1)
Dan-From-Ryviu
Shopify Partner
10256 2038 2109

This is an accepted solution.

This is zoom function of device, not zoom function of theme. If you want to remove this, please add this code to your theme.liquid file after <head> tag 

 

{%- if template.name == 'product' -%}
<meta name="viewport" content="width=device-width, user-scalable=no">
{%- endif -%}

 

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 11 (11)

Dan-From-Ryviu
Shopify Partner
10256 2038 2109

Hi @basically 

You can do that by adding this CSS code to Custom CSS of Product information section in your product template

Screenshot 2023-10-23 at 10.04.21.png

@media (max-width: 767px) {
  .product__media-toggle:after,
  .product__media-icon--lightbox {
    display: none;
  }
}

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

basically
Tourist
22 0 0

Seems not working 🤔

Dan-From-Ryviu
Shopify Partner
10256 2038 2109

If you don't mind, can you share your store link so I can check?

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

Dan-From-Ryviu
Shopify Partner
10256 2038 2109

Image zoom is disabled as I have checked on my side. Did you try to reload your page to check after adding the code?

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

basically
Tourist
22 0 0

Yes, it's still there for me...is it because of the browser? im using chrome.

You checked on mobile only right? what device?

Dan-From-Ryviu
Shopify Partner
10256 2038 2109

I have checked both on mobile, chrome, safari browsers. Please try to use Incognito browser and check again

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

basically
Tourist
22 0 0

Please check attached screen recording file.

Dan-From-Ryviu
Shopify Partner
10256 2038 2109

This is an accepted solution.

This is zoom function of device, not zoom function of theme. If you want to remove this, please add this code to your theme.liquid file after <head> tag 

 

{%- if template.name == 'product' -%}
<meta name="viewport" content="width=device-width, user-scalable=no">
{%- endif -%}

 

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

Dan-From-Ryviu
Shopify Partner
10256 2038 2109

Or please update code to this 

@media (max-width: 767px) {
  .product__media-toggle:after,
  .product__media-icon--lightbox {
    display: none !important;
  }
}

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

HollandMoose
Visitor
1 0 0

Thanks! This code worked very wel for me to adjust the zoom size on mobile. I pasted the code in the custom css field of the product template. I am using the free shopify Taste theme.