"View in original gallery "in collected photos \ keyword pages

einateinat Registered Users Posts: 193 Major grins
edited November 15, 2013 in SmugMug Customization
When viewing keyword pages, there's no option to go to the photos' original gallery. I think there was such an option in old SM.
Here's a link to the 'motion' keyword page:
http://www.einatix.com/keyword/motion
The first photo is from … Travel\Venice.

When viewing a collected photo, the option is there, if a visitor can make the connection and guess that "from" means "from original gallery and here's the link to it".
Here's a link to one such photo, its original gallery is Israel:
http://www.einatix.com/Art/Nature-in-BW#!/i-LDV6JrT

Is there a way (CSS?) to:
1. In collected photos, change the word "from" to "view in original gallery: "
2. In keyword pages, add the link with proper "wording"?
3. Have both of these appear in lightbox view, not only in In SM style galleries?

Thanks!!

Comments

  • einateinat Registered Users Posts: 193 Major grins
    edited October 17, 2013
    .............
  • ChancyRatChancyRat Registered Users Posts: 2,141 Major grins
    edited October 17, 2013
    Einy, I think the answer is no, at this time Smugmug does not have this functionality. I believe a bug report has been filed. More here: http://www.dgrin.com/showthread.php?t=240897 which may have ideas for you as well.
  • einateinat Registered Users Posts: 193 Major grins
    edited October 17, 2013
    ChancyRat wrote: »
    Einy, I think the answer is no, at this time Smugmug does not have this functionality. I believe a bug report has been filed. More here: http://www.dgrin.com/showthread.php?t=240897 which may have ideas for you as well.

    This only confirms my problem, but I see no work-around.
    And - that's for the keyword pages.

    I hope there's a way to fix what I don't like in the collected photos' galleries.
  • ChancyRatChancyRat Registered Users Posts: 2,141 Major grins
    edited October 17, 2013
    From another thread, from Great Helper Coder Allen, the limits currently for keywords. Mainly what matters to me is that I can't have a standalone keyword page for all keywords (some 800). You can however obtain one using HTML, as long as you can still access legacy, to copy all of them out of the site.

    This is probably slightly tangential to your issue? But good to know.
    the
    A little history. The max number of 1000 [now 5000] is in effect in a /keyword gallery. There is no limit
    if you use /search page and search for a keyword. The current /keyword page has a limit of 255.
    Who knows who at Smug picks the 255 of yours to show.

    http://www.dgrin.com/showthread.php?t=237620
    http://www.dgrin.com/showthread.php?t=237468
    -- see my solution in post #15, #42
    http://www.dgrin.com/showthread.php?t=240897
    -- see my solution in post #6
    http://www.dgrin.com/showthread.php?t=241201
  • einateinat Registered Users Posts: 193 Major grins
    edited October 17, 2013
    ChancyRat wrote: »
    From another thread, from Great Helper Coder Allen, the limits currently for keywords. Mainly what matters to me is that I can't have a standalone keyword page for all keywords (some 800). You can however obtain one using HTML, as long as you can still access legacy, to copy all of them out of the site.

    This is probably slightly tangential to your issue? But good to know.
    the

    No... I don't have that many keywords, so this problem doesn't affect me.
  • ChancyRatChancyRat Registered Users Posts: 2,141 Major grins
    edited October 17, 2013
    einat wrote: »
    No... I don't have that many keywords, so this problem doesn't affect me.

    Love your site by the way, this is beautiful and - is it real?
    http://www.einatix.com/Travel/TrueWinter/i-t7n9zVq/O
  • einateinat Registered Users Posts: 193 Major grins
    edited October 17, 2013
    Thanks! And it is real (-:
  • ChancyRatChancyRat Registered Users Posts: 2,141 Major grins
    edited October 17, 2013
    And Einat I love this too - is this done with a special lens, or with Photoshop or somesuch program:

    http://www.einatix.com/Fresh/i-KFDL3FQ/A
  • einateinat Registered Users Posts: 193 Major grins
    edited October 17, 2013
    It's a composit (not sure of the word in English) of dozens of separate photos. This one was (only) some 50 photos. I use a program called PT-GUI. Photoshop doesn't do a nice job with them.

    There's a whole gallery of them - http://www.einatix.com/Misc/PlanetPanoramas
  • leftquarkleftquark Registered Users, Retired Mod Posts: 3,784 Many Grins
    edited October 18, 2013
    einat wrote: »
    Is there a way (CSS?) to:
    1. In collected photos, change the word "from" to "view in original gallery: "
    2. In keyword pages, add the link with proper "wording"?
    3. Have both of these appear in lightbox view, not only in In SM style galleries?

    There is a way to do #1 but #2 and #3 are not possible at this time. Here's the CSS for #1
    /* Hide the word "From:" by making it transparent */
    .sm-tile-info .sm-text-mini {
      color: transparent;
    }
    
    /* Add the words "View in original gallery: " */
    .sm-tile-info .sm-text-mini:before {
      content: 'View in original gallery: ';
      color: #FFFFFF !important;
    }
    
    /* Move the link to the left so it hides where the word "From" was */
    .sm-tile-info .sm-text-mini a {
      margin-left: -30px;
      
      /* Move the link down 1 pixel so it aligns properly */
      position: relative;
      top: 1px;
    }
    

    Feel free to change the colors to what you want
    dGrin Afficionado
    Former SmugMug Product Team
    aaron AT aaronmphotography DOT com
    Website: http://www.aaronmphotography.com
    My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
  • einateinat Registered Users Posts: 193 Major grins
    edited October 18, 2013
    OH! Thanks, both for the code for letting me know what's not possible. Frustrating as it may be there's some peace and quiet that comes with knowing.

    Something strange happens, though.

    The words "View in original gallery" are repeated.
    You can see this in all but 2 of the photos in this gallery:
    http://www.einatix.com/AfterDark/Urban-Nights

    All my CSS goes in a CSS block on the entire site. Should it be different?

    The 1st though I had when I saw this was that it was "picked up" and already fixed :nah
  • leftquarkleftquark Registered Users, Retired Mod Posts: 3,784 Many Grins
    edited October 18, 2013
    einat wrote: »
    OH! Thanks, both for the code for letting me know what's not possible. Frustrating as it may be there's some peace and quiet that comes with knowing.

    Something strange happens, though.

    The words "View in original gallery" are repeated.
    You can see this in all but 2 of the photos in this gallery:
    http://www.einatix.com/AfterDark/Urban-Nights

    All my CSS goes in a CSS block on the entire site. Should it be different?

    The 1st though I had when I saw this was that it was "picked up" and already fixed :nah

    Ahh, yes, oops, I forgot I had put in another line to hide the repeat. My bad. Add
    /* Hide the word "From:" by making it transparent */
    .sm-tile-info .sm-text-mini {
      color: transparent;
    }
    
    /* Add the words "View in original gallery: " */
    .sm-tile-info .sm-text-mini:before {
      content: 'View in original gallery: ';
      color: #FFFFFF !important;
    }
    
    /* Move the link to the left so it hides where the word "From" was */
    .sm-tile-info .sm-text-mini a {
      margin-left: -30px;
      
      /* Move the link down 1 pixel so it aligns properly */
      position: relative;
      top: 1px;
    }
    
    [COLOR="Red"]/* The above code makes the link also show the 'VIew in original ...' text. Prevent that from repeating */
    .sm-tile-info .sm-text-mini a:before {
      content: '' !important;
    }[/COLOR]
    

    I always go to the theme settings, click advanced, and put it in the theme's advanced settings CSS section. I don't use CSS blocks.
    dGrin Afficionado
    Former SmugMug Product Team
    aaron AT aaronmphotography DOT com
    Website: http://www.aaronmphotography.com
    My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
  • einateinat Registered Users Posts: 193 Major grins
    edited October 18, 2013
    Thanks, it's perfect now.

    For the part of the code that moves the link down, I've set it at 0 - it alligned best that way.
  • ChancyRatChancyRat Registered Users Posts: 2,141 Major grins
    edited October 18, 2013
    I've been following along, and in checking your page http://www.einatix.com/AfterDark/Urban-Nights, I see an odd formatting glitch for the page numbers below the thumbnails. Arrow points the way. This formatting:

    - is on FF and IE and does not change with any resize of the browser. The blue down-carat does not function but the grey rectangle down arrow does function.
    - is not on Chrome, where the blue down carat functions properly.
  • einateinat Registered Users Posts: 193 Major grins
    edited October 18, 2013
    ChancyRat wrote: »
    I've been following along, and in checking your page http://www.einatix.com/AfterDark/Urban-Nights, I see an odd formatting glitch for the page numbers below the thumbnails. Arrow points the way. This formatting:

    - is on FF and IE and does not change with any resize of the browser. The blue down-carat does not function but the grey rectangle down arrow does function.
    - is not on Chrome, where the blue down carat functions properly.

    I know about this. There was a thread about it a few weeks ago, maybe quite at the beginning of the new SM. I can't remember what conclusion they reached and whether or not there was anything to do about it.
  • raebrownraebrown Registered Users Posts: 273 Major grins
    edited November 15, 2013
    leftquark wrote: »
    There is a way to do #1 but #2 and #3 are not possible at this time. Here's the CSS for #1
    /* Hide the word "From:" by making it transparent */
    .sm-tile-info .sm-text-mini {
      color: transparent;
    }
    
    /* Add the words "View in original gallery: " */
    .sm-tile-info .sm-text-mini:before {
      content: 'View in original gallery: ';
      color: #FFFFFF !important;
    }
    
    /* Move the link to the left so it hides where the word "From" was */
    .sm-tile-info .sm-text-mini a {
      margin-left: -30px;
      
      /* Move the link down 1 pixel so it aligns properly */
      position: relative;
      top: 1px;
    }
    
    Feel free to change the colors to what you want


    Works fine except that the name of the 'original gallery' is hidden until hovered over. See here: http://www.tickledpixels.com/Great-Places-to-Rest-Your-Feet/Take-a-Seat/i-srd7Bpm . Any ideas?
    Rae
    Tickled Pixels

    Tickled Pixels Blog: "
    A walk in Gamla stan, the old town of Stockholm"
Sign In or Register to comment.