Removing Share button from photo feature

Is it possible to remove the SHARE button from the Photo Feature. Client only wants to be able to save it but no sharing.

Thank you! :wink:

1 Like

I don’t think so. From what I have read that part of it is hard coded.

Steve

2 Likes

Thanks Steve. THe client is not happy with the fact that we have to put the date of birth, but that is now to comply with regulations really… I believe

1 Like

Hello @digitalpopups,

Actually yes, it’s possible to remove the share button. Just do this:

image

parent.on("show", () => {
    
    // Make sure we start from fully hidden
    display_hidden.reset();
    
    // Move to the shown state
    display_shown.activate();
    
    Z.device.socialShare(false);

});

Hope this helps you,

att, Higão.

1 Like

Didn’t know that! Thanks!

Birthdate? I haven’t seen that yet.

Steve

1 Like

Oh Yes! It worked! Thanks Igao.
Fantastic :wink:

1 Like

Yes, Steve. I believe it is country sensitive. We didn’t have it before but at least here in the UK it asks for our date of birth and country when you want to share you photo in photofeature.

2 Likes