Share question...

M38A1M38A1 Registered Users Posts: 1,317 Major grins
edited February 1, 2010 in SmugMug Support
Is it possible to turn-off the get a link feature to the public, yet at the same time allow me (site owner) to get a link and use it for display of the image somewhere else?

.

Comments

  • RogersDARogersDA Registered Users Posts: 3,502 Major grins
    edited February 1, 2010
    M38A1 wrote:
    Is it possible to turn-off the get a link feature to the public, yet at the same time allow me (site owner) to get a link and use it for display of the image somewhere else?

    .
    One way to do this is to copy the following code into your CSS. This will affect all galleries.
    .share_button {
        display: none;
    }
    
    .loggedIn .share_button {
        display: block;
    }
    
  • jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited February 1, 2010
    RogersDA wrote:
    One way to do this is to copy the following code into your CSS. This will affect all galleries.
    .share_button {
        display: none;
    }
    
    .loggedIn .share_button {
        display: block;
    }
    

    That will work, but this is a bit simpler and slightly less prone to break if Smugmug changes their layout:

    .notLoggedIn #shareButton {display:none;}
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
Sign In or Register to comment.