Home Forums WoodMart support forum Disable "download" and "pin it" on mobile lightbox?

Disable "download" and "pin it" on mobile lightbox?

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #166329

    emarketworks
    Participant

    Hello, on our store products, when tapping an image that opens in the photoswipe popup, there are share options on the screen to “download” and “pin it”. Could these 2 options be removed?

    #166384

    Hello,

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

    .pswp__share-tooltip a.pswp__share--pinterest {
    display:none;
    }
    .pswp__share-tooltip a.pswp__share--download {
    display:none;
    }

    Best Regards

    #166390

    emarketworks
    Participant

    Is it possible to remove the share button completely?

    Is it possible to only show an “email” link share? (Email link share does not currently show up.)

    #166391

    emarketworks
    Participant

    After looking at the code, the links are still visible in the source. Is there also a way to remove the above options, not “hide” them?

    #166405

    Hello,

    We can hide with custom CSS only.

    Please add this code to the Theme Settings > Custom CSS > Global to hide “Share” completely:

    .pswp__button--share {
        display:none!important;
    }

    Best Regards

    #166407

    emarketworks
    Participant

    Thank you

    #166409

    Hello,

    Sorry, you should insert code into the Theme Settings > Custom CSS > MOBIlE to hide it. Global would hide on all the devices.

    Best Regards

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