How to remove "COLLECTED" from photos
lkbart
Registered Users Posts: 1,912 Major grins
A while back, I read that as the owner of a Smug site, you could tell which photos in your galleries were the Collected photos by changing a setting, and considering it could be a useful tool, I did that so I could tell which photos in my galleries were collected and which were not. I understand that this COLLECTED notation is only viewable when logged in as owner of the site, so viewers of my site do not see the COLLECTED notation on my photos.
Fast forward to now, & I would now like to turn it off, but can't find the setting I need to change anywhere, and keep getting nothing from searches relating to how to show or not show that photos are collected. Suggestions please?
*& after posting this, just realized that it is apparently in the Legacy customization section? Apparently when I clicked on the drop down from the Support tab and clicked on "Smugmug Customization", it automatically took me to Legacy instead of New sites, and I'm having this issue on a new site.
Fast forward to now, & I would now like to turn it off, but can't find the setting I need to change anywhere, and keep getting nothing from searches relating to how to show or not show that photos are collected. Suggestions please?
*& after posting this, just realized that it is apparently in the Legacy customization section? Apparently when I clicked on the drop down from the Support tab and clicked on "Smugmug Customization", it automatically took me to Legacy instead of New sites, and I'm having this issue on a new site.
~Lillian~
A photograph is an artistic expression of life, captured one moment at a time . . .
http://bartlettphotoart.smugmug.com/
A photograph is an artistic expression of life, captured one moment at a time . . .
http://bartlettphotoart.smugmug.com/
0
Comments
Could you post a screenshot, perhaps, to describe what you're seeing? I have a number of collected photos on my site but I don't have any "collected" notation that I'm aware of. Below my images that are collected there's a link that says "From <original gallery name." Are you wanting to hide this?
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
The second screenshot is when I am just browsing the gallery:
A photograph is an artistic expression of life, captured one moment at a time . . .
http://bartlettphotoart.smugmug.com/
"You miss 100% of the shots you don't take" - Wayne Gretzky
Same with mine. I've never seen this before. I actually wish my site did this. I'll ask around tomorrow and see if I can get to the bottom of this
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
+1. I wish the COLLECTED showed up with mine too.
"You miss 100% of the shots you don't take" - Wayne Gretzky
/* Remove "from" line */
.sm-tile-info .sm-muted {
display: none
}
Good luck!
Sara
I was hoping a SmugHero would help out, I'm sure it's a simple thing once you know where that specific setting is.
A photograph is an artistic expression of life, captured one moment at a time . . .
http://bartlettphotoart.smugmug.com/
Found this code in your site's CSS:
/* ss-lightbox-view-collected */
.ss-lightbox-image-collection-info {
position:absolute;
right:0px;
padding:10px 15px;
bottom:50px;
z-index:4;
}
/* ss-tile-base-view-collected */
.ss-tile-collected .sm-tile-status,
.ss-tile-smart .sm-tile-status {
display: block;
}
/* Apply our symbols to :before so we don't stomp on SM's :after symbols */
.ss-tile-collected .sm-tile-status span:before,
.ss-tile-smart .sm-tile-status span:before {
text-transform: uppercase;
font-size: 14px;
}
.sm-tile-hidden.ss-tile-collected .sm-tile-status span:before,
.sm-tile-hidden.ss-tile-smart .sm-tile-status span:before {
margin-right: 5px;
}
.ss-tile-collected .sm-tile-status span:before {
content: "Collected";
}
.ss-tile-smart .sm-tile-status span:before {
content: "Smart";
}
.ss-tile-collected .sm-tile-status span,
.ss-tile-smart .sm-tile-status span {
left:0;
right:0;
}
/* ss-organizer-collected */
#sm-organizer .sm-organizer-image-overlay span {
/* Use a centering strategy that'll work for variable width content */
left: 0 !important;
right: 0 !important;
margin: -16px 0 0 0 !important;
width: auto !important;
text-align: center;
}
.ss-tile-collected .sm-organizer-image-overlay span:after,
.ss-tile-smart .sm-organizer-image-overlay span:after {
text-transform: uppercase;
font-size: 12px;
vertical-align:middle;
}
.ss-tile-collected .sm-organizer-image-overlay span.sm-fonticon-Hide:after,
.ss-tile-smart .sm-organizer-image-overlay span.sm-fonticon-Hide:after {
margin-left: 5px;
}
.ss-tile-collected .sm-organizer-image-overlay span:after {
content: "Collected";
}
.ss-tile-collected .sm-organizer-image-overlay span.sm-fonticon-Hide:after {
font-size: 11px;
}
.ss-tile-smart .sm-organizer-image-overlay span:after {
content: "Smart";
}
Chances are that's doing it. I'm guessing you added it to your theme's CSS or to a CSS content block somewhere.
Dave
.sm-user-ui .sm-tile-content , .sm-tile-info {
text-align: center;
}
.sm-tile-folder .sm-tile-type-icon:after, .sm-tile-album .sm-tile-type-icon:after {
display: none;
}
/* Right Click Protection code */
/* Your Message */
.sm-user-ui .sm-right-click-message:after {
content: 'Copyright Lillian Bartlett ~ Enjoy! Prints available for purchase in many sizes and styles! Just click on any photo & ADD TO CART!';
}
/* To Block SM Message */
.sm-user-ui .sm-right-click-message .sm-tooltip-content {
display: none;
}
/* used for changing background-color and Radius AND color of Text In some Themes */
.sm-user-ui .sm-right-click-message {
background-color: #fff;
border-radius: 10px;
box-shadow: -4px 5px 10px #000;
color: black;
}
And I still have a memory of some kind of setting somewhere that I changed (maybe this is only in my mind though!).
A photograph is an artistic expression of life, captured one moment at a time . . .
http://bartlettphotoart.smugmug.com/
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
I used "inspect element" in Chrome, then the Sources tab to see all the CSS files your site is using:
No idea where that comes from. I don't remember such a setting and I can't find a similar CSS file on my site. Maybe someone that has studied the inner workings of smugmug can help track down where that is coming from and how to remove it.
Dave
The javascript file below inject.css has references in it such as:
if (window.sherlockPhotographySMForChrome && document.body.className.indexOf('sm-user-owner')
That makes me assume it has something to do with the chrome extension. I'm not sure if I see this because I'm running the extension or what. Do you also run the chome extension for smugmug? If you disable it, does the issue go away?
EDIT:
Ok, I figured it out. See http://www.dgrin.com/showthread.php?t=245247&highlight=collected. Open the extension on your homepage, and hit tweaks. You'll find the settings there.
Dave
A photograph is an artistic expression of life, captured one moment at a time . . .
http://bartlettphotoart.smugmug.com/
"You miss 100% of the shots you don't take" - Wayne Gretzky
A photograph is an artistic expression of life, captured one moment at a time . . .
http://bartlettphotoart.smugmug.com/