Home Forums WoodMart support forum How to disable single product thumbnails for moible devices?

How to disable single product thumbnails for moible devices?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #505898

    nbgamer897
    Participant

    Hi, I want to disable thumbnails for single products on mobile devices but I can not find any option to do so and I also want to full width the product images tab for mobile devices. Thank you.

    • This topic was modified 1 year, 1 month ago by nbgamer897.
    Attachments:
    You must be logged in to view attached files.
    #505980

    Hello,

    Please use the Theme Presets and change the thumbnail position for mobile devices from Theme settings > Single Product > Images > Thumbnail position.

    Please check this:
    Select the custom condition and select it for mobile device.
    https://xtemos.com/docs-topic/theme-settings-presets/

    Best Regards.

    #506027

    nbgamer897
    Participant

    Hi, thanks for getting back. But I still can’t figure it out. If you could do it that would be very helpful. Thank you.

    #506198

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Custom CSS for Mobile:

    .thumbs-position-left .thumbnails {
        display: none !important;
    }

    Best Regards.

    #506459

    nbgamer897
    Participant

    Hi, thanks thumbnails are gone but product image is still not full width and also need to hide the navigation arrows.

    Attachments:
    You must be logged in to view attached files.
    #506714

    Hello,

    Please check this Manual to change the size:
    https://www.businessbloomer.com/woocommerce-single-product-image/

    Try to ass following custom CSS in theme settings > Custom CSS > mobile custom CSS:

    .wd-owl :is(.owl-nav .owl-prev,.owl-nav .owl-next,.owl-dot) {
    	display:none;
    }

    Best Regards.

    #506741

    nbgamer897
    Participant

    Hi, thanks for getting back, i think the article you provided is for changing shop page image size. I want to change product image size to full width but i can’t figure it out I tried editing single product layout but still can’t figure it out.

    Attachments:
    You must be logged in to view attached files.
    #506941

    Hello,

    Try to add the following custom CSS code in Theme Settings > Global custom CSS:

    .woocommerce.single-product #content div.product div.images,
    .woocommerce.single-product div.product div.images,
    .woocommerce-page.single-product #content div.product div.images,
    .woocommerce-page.single-product div.product div.images {
    max-width: 70%;
    display: block;
    width: 70% !important;
    float: none !important;
    margin-left: auto;
    margin-right: auto;
    }

    Change the code as per your requirements.

    Best Regards.

Viewing 8 posts - 1 through 8 (of 8 total)