Options

Smugmug bugs and feature requests #7

1111213141517»

Comments

  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited November 21, 2005
    jfriend wrote:
    I am totally confused. When I go to http://andydemo.smugmug.com/gallery/905518, I cannot find the JavaScript we're talking about in your footer. I can't find it anywhere in the page.

    Dunno what to say, it's there, in the footer, just like you said ne_nau.gif I even tried your newer code... nup...
  • Options
    jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited November 21, 2005
    Try View Source
    Andy wrote:
    Dunno what to say, it's there, in the footer, just like you said ne_nau.gif I even tried your newer code... nup...
    Andy, when you do View Source on the page in question and scroll down to the footer (look for the "<!-- Start Footer -->" line), do you see the code anywhere in there? I just see the stock footer with absolutely no customizations.
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited November 21, 2005
    jfriend wrote:
    Andy, when you do View Source on the page in question and scroll down to the footer (look for the "<!-- Start Footer -->" line), do you see the code anywhere in there? I just see the stock footer with absolutely no customizations.


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
    <html xmlns="http://www.w3.org/1999/xhtml&quot; xml:lang="en" lang="en">
    <head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
    <meta name="description" content="Wookies versus Grizzlies, September 9, 2005." />
    <meta name="keywords" content="soccer, wookies, grizzlies" />
    <meta name="robots" content="all, index, follow" />
    <link rel="SHORTCUT ICON" href="/favicon.ico" />
    <link rel="alternate" type="application/atom+xml" title="smugmug: andydemo > Example Sports Gallery - Watermarked Atom feed" href="/hack/feed.mg?Type=gallery&Data=905518&format=atom03" />
    <link rel="alternate" type="application/rss+xml" title="smugmug: andydemo > Example Sports Gallery - Watermarked RSS feed" href="/hack/feed.mg?Type=gallery&Data=905518&format=rss200" />


    <link href="http://andydemo.smugmug.com/include/css/smugmugBlack.css&quot; type="text/css" rel="stylesheet" /><link href="http://andydemo.smugmug.com/include/css/smugmugWhite.css&quot; type="text/css" rel="stylesheet" /><link id="pickedTheme" href="http://andydemo.smugmug.com/include/css/theme_51.css&quot; type="text/css" rel="stylesheet" />
    <meta http-equiv="imagetoolbar" content="no">
    <script language="JavaScript">
    <!--
    document.oncontextmenu = rightProtect;
    function rightProtect(e) {
    if (window.event) {
    var srcEl = event.srcElement ? event.srcElement : event.target;
    }
    else {
    var srcEl = e.srcElement ? e.srcElement : e.target;
    }
    var className = srcEl.className;
    if (className.indexOf('protected') != -1) {

    window.alert("These photos are copyrighted by their respective owners. All rights reserved. Unauthorized use prohibited.");
    return false;
    }
    else {
    return true;
    }
    }
    //-->
    </script>
    <script src="http://andydemo.smugmug.com/include/js/smugmug.js&quot; type="text/javascript" ></script>

    <script src="http://andydemo.smugmug.com/include/js/nicetitle.js&quot; type="text/javascript" ></script>
  • Options
    jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited November 21, 2005
    Andy wrote:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
    <html xmlns="http://www.w3.org/1999/xhtml&quot; xml:lang="en" lang="en">
    <head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
    <meta name="description" content="Wookies versus Grizzlies, September 9, 2005." />
    <meta name="keywords" content="soccer, wookies, grizzlies" />
    <meta name="robots" content="all, index, follow" />
    <link rel="SHORTCUT ICON" href="/favicon.ico" />
    <link rel="alternate" type="application/atom+xml" title="smugmug: andydemo > Example Sports Gallery - Watermarked Atom feed" href="/hack/feed.mg?Type=gallery&Data=905518&format=atom03" />
    <link rel="alternate" type="application/rss+xml" title="smugmug: andydemo > Example Sports Gallery - Watermarked RSS feed" href="/hack/feed.mg?Type=gallery&Data=905518&format=rss200" />


    <link href="http://andydemo.smugmug.com/include/css/smugmugBlack.css&quot; type="text/css" rel="stylesheet" /><link href="http://andydemo.smugmug.com/include/css/smugmugWhite.css&quot; type="text/css" rel="stylesheet" /><link id="pickedTheme" href="http://andydemo.smugmug.com/include/css/theme_51.css&quot; type="text/css" rel="stylesheet" />
    <meta http-equiv="imagetoolbar" content="no">
    <script language="JavaScript">
    <!--
    document.oncontextmenu = rightProtect;
    function rightProtect(e) {
    if (window.event) {
    var srcEl = event.srcElement ? event.srcElement : event.target;
    }
    else {
    var srcEl = e.srcElement ? e.srcElement : e.target;
    }
    var className = srcEl.className;
    if (className.indexOf('protected') != -1) {

    window.alert("These photos are copyrighted by their respective owners. All rights reserved. Unauthorized use prohibited.");
    return false;
    }
    else {
    return true;
    }
    }
    //-->
    </script>
    <script src="http://andydemo.smugmug.com/include/js/smugmug.js&quot; type="text/javascript" ></script>

    <script src="http://andydemo.smugmug.com/include/js/nicetitle.js&quot; type="text/javascript" ></script>
    That is smugmug's rightProtect code in the <HEAD> section. That's not the changed version in your footer (note it's message in the window.alert line is the stock message, not a changed message and the function name is not "rightProtect2" like it is in my changed version).
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited November 21, 2005
    jfriend wrote:
    That is smugmug's rightProtect code in the <HEAD> section. That's not the changed version in your footer (note it's message in the window.alert line is the stock message, not a changed message and the function name is not "rightProtect2" like it is in my changed version).


    I dunno what to say - it's in my footer :D Maybe someone else could try it?
  • Options
    HighLightPhotosHighLightPhotos Registered Users Posts: 68 Big grins
    edited November 21, 2005
    custom watermark text
    Sorry, if it's been covered and is in the works already....
    any possibility of a gallery custamization option to change the text for watermarking from "proof" to a text or graphic that can be set by the user??

    thanks
  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited November 21, 2005
    Sorry, if it's been covered and is in the works already....
    any possibility of a gallery custamization option to change the text for watermarking from "proof" to a text or graphic that can be set by the user??

    thanks

    Hi, thanks for posting! It has indeed been covered. This is a feature request we'd love to offer, we're having various discussions about it as we speak. No promises on if/when but we hope to be able to do this! Keep an eye on the release notes blog (you can subscrive via RSS) and you'll know the moment we have something on this!

    Thanks so much for your valuable in put!

    Andy
  • Options
    jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited November 21, 2005
    Not sure where to go from here...
    Andy wrote:
    I dunno what to say - it's in my footer :D Maybe someone else could try it?
    I don't know what do to next because I don't see the changed code in your page so that's presumably why it doesn't work for me. Do you see it in your page when you look at View Source? I just see the standard, unmodified smugmug footer on that page.

    Did my gallery example work for you where I put it on my site?
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited November 21, 2005
    jfriend wrote:
    I don't know what do to next because I don't see the changed code in your page so that's presumably why it doesn't work for me. Do you see it in your page when you look at View Source? I just see the standard, unmodified smugmug footer on that page.

    Did my gallery example work for you where I put it on my site?

    Yes, your example worked fine. I've put your code in the footer but it's not working - perhaps you have some other javascript that's needed?
  • Options
    Mike LaneMike Lane Registered Users Posts: 7,106 Major grins
    edited November 21, 2005
    Andy wrote:
    Yes, your example worked fine. I've put your code in the footer but it's not working - perhaps you have some other javascript that's needed?
    That's odd because on your linked page Andy you still have the longer footer not the "I've put something in my footer box and now you see the short footer" footer. Your andydemo.smugmug.com base page has the cobrand_footer (the short one) but the gallery you pointed to has the long one (indicating that there isn't anything at all in the footer).

    I haven't investigated too much so I'm not sure what's up, but my god the page you linked to looks wonderful!
    Y'all don't want to hear me, you just want to dance.

    http://photos.mikelanestudios.com/
  • Options
    jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited November 21, 2005
    Hmmm. Different footer on different andydemo pages
    Andy wrote:
    Yes, your example worked fine. I've put your code in the footer but it's not working - perhaps you have some other javascript that's needed?
    Mike's observation is an interesting one. Your footer customization is showing up on http://andydemo.smugmug.com/ (e.g. the new JavaScript code is there). It is not showing up in http://andydemo.smugmug.com/gallery/905518. So something is either special or weird about your andydemo account or the gallery we're looking at or smugmug has some sort of problem. Your homepage doesn't have the same footer as the 905518 gallery.

    Is the 905518 gallery fully public? I don't know why that should matter, but I'm grasping at straws for why it isn't getting the footer. I can't seem to get to it from http://andydemo.smugmug.com/ via normal navigation.
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited November 21, 2005
    jfriend wrote:
    Mike's observation is an interesting one. Your footer customization is showing up on http://andydemo.smugmug.com/ (e.g. the new JavaScript code is there). It is not showing up in http://andydemo.smugmug.com/gallery/905518. So something is either special or weird about your andydemo account or the gallery we're looking at or smugmug has some sort of problem. Your homepage doesn't have the same footer as the 905518 gallery.

    Is the 905518 gallery fully public? I don't know why that should matter, but I'm grasping at straws for why it isn't getting the footer. I can't seem to get to it from http://andydemo.smugmug.com/ via normal navigation.

    lol3.gif So much to think about mwink.gif - needed to tick the radio button for "appearance" in customize gallery to "custom" and that allowed the javascript to be seen and used. All is well - nice hack, John!
  • Options
    jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited November 21, 2005
    Glad it's working now
    Andy wrote:
    lol3.gif So much to think about mwink.gif - needed to tick the radio button for "appearance" in customize gallery to "custom" and that allowed the javascript to be seen and used. All is well - nice hack, John!
    Cool - mystery solved. I have never understood what that button was for. Glad it's working now.

    I hope JT sees the suggestion I made earlier in this thread for how he could change smugmug's code to make this message customization trivial for users.
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited November 21, 2005
    jfriend wrote:
    Cool - mystery solved. I have never understood what that button was for. Glad it's working now.

    I hope JT sees the suggestion I made earlier in this thread for how he could change smugmug's code to make this message customization trivial for users.


    you could post that again here deal.gif
  • Options
    ExposeTheMomentExposeTheMoment Registered Users Posts: 271 Major grins
    edited November 23, 2005
    E-Mail Notification On Print Sales
    Can Smumug make it so that when someone buys prints from me, that I get an e-mail notification upon the completion of the sale?
    Gary Harfield
    Owner/Photographer
    Expose The Moment

    Had a list of gear, now its to long, so lets say I have 2 bags and 15,000 worth of stuff.
  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited November 23, 2005
    Can Smumug make it so that when someone buys prints from me, that I get an e-mail notification upon the completion of the sale?

    Thanks for the suggestion, HiTech :)

    We really appreciate your input. Right now, there's notice put in your control panel if you are a pro subscriber. I'll be sure to show this to the team, and we'll discuss it.

    I'm moving this to the suggestions thread, thanks.
  • Options
    rainforest1155rainforest1155 Registered Users Posts: 4,566 Major grins
    edited November 26, 2005
    Keyword issues
    As I'm currently revalueating the usage of keywords for me I would like to point to this thread again discussing the issue of how to handle IPTC keywords, especially word groups who are separated by a comma or semicolon. This is very important for me, as my database program can't handle double quotes very well in connection with keywords and all my other software uses comma or semicolons for the separation of keywords.

    Also I would like to point out that there's still no way of getting from a keyword page to the corresponding gallery when viewing in tradtitional view/ single image view! Still the 'See photo in gallery' only appears in smugmug style and there's even no way of changing the style on keyword pages even if you knew that this is the problem. I use the traditional style almost always...

    Thanks,
    Sebastian
    Sebastian
    SmugMug Support Hero
  • Options
    marlinspikemarlinspike Registered Users Posts: 2,095 Major grins
    edited December 2, 2005
    Simple change request
    I think this would be a simple change, but I could be wrong. Has smugmug given any thought to having the button you use to adjust the crop in your shopping cart say "adjust crop" instead of simply "adjust"?
  • Options
    {JT}{JT} Registered Users Posts: 1,016 Major grins
    edited December 2, 2005
    It did say adjust crop for a while, but we needed it shorter. I may tweak it again so it can go back to adjust crop.

    I think this would be a simple change, but I could be wrong. Has smugmug given any thought to having the button you use to adjust the crop in your shopping cart say "adjust crop" instead of simply "adjust"?
  • Options
    marlinspikemarlinspike Registered Users Posts: 2,095 Major grins
    edited December 2, 2005
    {JT} wrote:
    It did say adjust crop for a while, but we needed it shorter. I may tweak it again so it can go back to adjust crop.
    How about making it two lines, that way it won't be any longer and there is already plenty of space below it. I brought this up because I was asked today if there is a way to adjust the crop by a friends mom (and yes, it is always a little odd having friends as customers)
  • Options
    AndyAndy Registered Users Posts: 50,016 Major grins
    edited December 2, 2005
    Gary Glass wrote:
    I wish I could search the help docs.

    I wish the help docs had a good index.


    Dunno if this was answered but one easy way is to go to google and type the following:

    site:www.smugmug.com/help WHATIMSEARCHINGFOR

    :D
This discussion has been closed.