|
|
Thread Tools | Display Modes |
|
#141
|
|
|
Major grins
|
Looks like it's working now...if I enter some random wrong password, then I get this "wrong password screen": ![]() But if I enter your password: trial ..I get taken to the gallery: http://www.ksartistry.com/Clients/trial/24091046_N4VGXL on the "wrong password screen" you can change the link from white to grey...or whatever color you want by adjusting this rule: Code:
.categoryDescription a
{color:#ffffff}
|
|
|
|
|
#142
|
|
|
Suli
|
Right on!
Joe, right on man! It works beautifully now, thank you!
![]() ![]()
|
|
|
|
|
#143
|
|
|
Major grins
|
Great! If you look through your java-script, you can change the text on the "wrong pw" screen to say what ever you want also. |
|
|
|
|
#144
|
|
|
Big grins
|
Help...
I need help~
can please someone tell me where to put this /Clients ? Where do I find the nav bar in the advanced customization ? nadyareid.com thank you
|
|
|
|
|
#145
|
||
|
Major grins
|
Quote:
In your custom header box....adjust this line in your nav html.... From this: Code:
<div id="navcontainer"> <ul> <li><a href="/">Home</a></li> <li><a href="/galleries">My Work</a></li> <li><a href="/Other/text/16335486_ZBbDZ">About</a></li> <li><a href="http://nadya-reid.smugmug.com/Clients/">Clients</a></li> <a href="/" onclick="return false;" class="customContactButton">Contact</a> </ul> </div> To this: Code:
<div id="navcontainer"> <ul> <li><a href="/">Home</a></li> <li><a href="/galleries">My Work</a></li> <li><a href="/Other/text/16335486_ZBbDZ">About</a></li> <li><a href="/Clients">Clients</a></li> <a href="/" onclick="return false;" class="customContactButton">Contact</a> </ul> </div> |
|
|
|
||
|
#146
|
||
|
Big grins
|
PERFECT !!! thanks very much !
Quote:
|
|
|
|
||
|
#147
|
||
|
Big grins
|
Quote:
I just wanted to make sure I was understanding the purpose of this - the above code is required for using subcategories within the 'Clients' area created in your original post, correct? Thanks! - Andrew |
|
|
|
||
|
#148
|
|
|
Beginner grinner
|
not working
Not sure what I am doing wrong but I copied and changed all the code like it said to but when I click on the client login part it shows nothing.
www.micahrayphotography.com |
|
|
|
|
#149
|
||
|
Major grins
|
Quote:
That code will work with any gallery on your site....category and sub-cat make no difference...and you can set the password to what ever you want |
|
|
|
||
|
#150
|
||
|
Major grins
|
Quote:
looks like everything is working from my end....if I enter a wrong password, I get this screen: ![]() If I enter the password "Nelson", I get taken directly to the gallery. |
|
|
|
||
|
#151
|
|
|
Beginner grinner
|
Sorry for the delayed response...thank you, I guess it is working, not sure what happened on my end.
|
|
|
|
|
#152
|
||
|
Beginner grinner
|
Quote:
Thanks again! |
|
|
|
||
|
#153
|
||
|
Major grins
|
Quote:
See post number #3 & 4 of this thread |
|
|
|
||
|
#154
|
|
|
Big grins
|
managed to get client login sorted
from reading posts in this thread ![]() can I now remove this from css so that it cleared away from screen ? <div id="Clientmessage" align="center"> <p class='ContentText' align='center'> Incorrect Client Login. Please click <a href="/Pages/Client-Login">Client Login</a> and enter the password provided by Dueling Lenses Photography </p> </div> sorry don't how to put it like in a code box but I am getting there
__________________
http://duelinglenses.smugmug.com/ |
|
|
|
|
#155
|
||
|
Major grins
|
Quote:
|
|
|
|
||
|
#156
|
|
|
Big grins
|
__________________
http://duelinglenses.smugmug.com/ |
|
|
|
|
#157
|
|
|
Big grins
|
oops
![]() not sure whats happened, and I don't know if the 2 are connected.. but now when I try my client contact button its taking ages to load (and sometimes dosn't. all I' ve done is got rid of some code from custom header box. and also trying to get my bio page image to line up centerally ![]() could someone look at my coding to see where I've gone wrong. ![]() much appreciated and I'm fighting my way through and feel I'm almost there
__________________
http://duelinglenses.smugmug.com/ |
|
|
|
|
#158
|
||
|
Major grins
|
Quote:
Working on my end |
|
|
|
||
|
#159
|
|
|
Big grins
|
sorry meant to say contact button (far right on navbar)
update: just been trying it and sometimes it works and sometimes it dosn't, must be a glitch somewhere ??? update 2 if it dos work, when you click the close button on the form, that goes but another is left saying loading and you have to click the close button on that as well. have I got 2 forms one working the other not and it depends which pops up first
__________________
http://duelinglenses.smugmug.com/ Last edited by bronking; Oct-01-2012 at 01:55 AM. |
|
|
|
|
#160
|
||
|
Major grins
|
Quote:
Code:
//--------------------------------------------------------------------------------------------------
// Install Email Contact Link (for pro accounts only)
//
// Version 1.1
//--------------------------------------------------------------------------------------------------
YE.onDOMReady(InitMyContactButton);
function InitMyContactButton()
{
InitMyContactButton.extraContactUsButtons = new Array;
var contacts = Sizzle(".customContactButton");
// look in Easy Customizer navbar too
var navEntries = Sizzle("#customNav li a");
for (var j = 0; j < navEntries.length; j++)
{
var str = navEntries[j].href;
if (str.search(/\/customcontact/i) != -1)
{
navEntries[j].onclick = function () {return false;};
contacts.push(navEntries[j]);
break;
}
}
var nick, o, matches;
// see if the nickname is already defined in the page
try {
nick = NickName || SM.hostConfig.nickname ; // get standard nickname
} catch (e) {}
// see if the nickname is in the URL
if (!nick)
{
try {
matches = window.location.host.match(/^(www.)?(.*)\.smugmug\.com$/i);
nick = matches[2];
} catch (e) {}
}
// see if we can get the nickname from one of the built-in contact links on the page
if (!nick)
{
// hack - NickName doesn't exist on some pages so we try to pull it from the password prompt or the standard footer
o = YD.get("contactUsButtonWrapper") || YD.get("contactUsButtonWrapperFooter");
matches = o.onmouseover.toString().match(/ownerNickName:\s*'([^']+)'/)
if (matches && matches.length > 1)
{
nick = matches[1];
}
}
for (var i = 0; i < contacts.length; i++)
{
InitMyContactButton.extraContactUsButtons.push(new SM.buttons.contactUs
(
contacts[i].parentNode,
contacts[i],
{
buttonText: 'Contact',
panelTitle: 'customer contact',
currentPage: window.location.toString(),
currentPageOverride: '',
referringPage: '',
pro: '',
modal: 'true',
popupName: 'contactOwner',
uniqueID: 'myContactPanel' + InitMyContactButton.extraContactUsButtons.length,
ownerNickName: nick,
width: '800px',
albumID: '',
additionalParams: 'FooterContact'
}
));
}
}
|
|
|
|
||
| Tell The World! | |
| Similar Threads | Thread Starter | Forum | Replies | Last Post | ![]() |
| Please help with changing color of image display area in my galleries | RBgunner | SmugMug Customization | 1 | May-08-2009 12:43 PM | |
| Why Can't I see my Client Galleries in Firefox? | deegee | SmugMug Customization | 2 | Sep-22-2008 09:48 AM | |
| Your Proofing and Editing process | thenimirra | Mind Your Own Business | 5 | Aug-18-2008 11:41 AM | |
| Client proofing and bride picks her top 75 photos and I only see and print them. | aacreation | SmugMug Customization | 4 | Jul-23-2008 09:29 AM | |
| San Francisco Bay Area Photography Group | dkapp | The Big Picture | 3 | Nov-07-2004 07:35 PM | |
| Thread Tools | |
| Display Modes | |
|
|