|
#121
|
|||
|
|||
|
Thanks, Geos. Once again you found the problem and in very short time. Doesn't look like it was 1.5 Final at all, but was probably always there, but I just never ran into it.
I replaced the href in the 'COMMENT_POPUP' tag with # and it works fine now. Thanks. Rob |
|
#123
|
||||
|
||||
|
Maybe I'm an idiot but I can't get this to work at all. Will it be standard on a future version of PP? I'll just wait until then.
|
|
#124
|
||||
|
||||
|
Probably it wont so PM me with your questions. There is one ready template which should work. It is enough to look on it and copy what is needed to yours.
|
|
#125
|
||||
|
||||
|
Ok I'll give that a try I was wondering why those templates were in there. I'll pm you if I have any more troubles.
|
|
#126
|
|||
|
|||
|
#127
|
||||
|
||||
|
There are tags for complete link, i.e.:
<SC_IMAGE_PREVIOUS_LINK_TXT> <SC_IMAGE_NEXT_LINK_TXT> and so on. There shouldnt be a problem with links. |
|
#128
|
||||
|
||||
|
This looks great.. having some troubles incorporating it into the theme. I am using this modified theme:
http://forum.pixelpost.org/showthrea...ghlight=ame235 which allows for a mouse over the image for previous and next navigation. That bit of code is: Code:
<div id="image">
<img src="./images/<IMAGE_NAME>" id="imgmaine" width="<IMAGE_WIDTH>" height="<IMAGE_HEIGHT>" />
<div id="menu_browse" style="width: <IMAGE_WIDTH>px; height:<IMAGE_HEIGHT>px;">
<script type="text/javascript">
var existprev = "<IMAGE_PREVIOUS_ID>";
var existnext = "<IMAGE_NEXT_ID>";
if (existprev != "<IMAGE_ID>"){
document.write('<a href="#" id="menu_browse_prev" onclick="document.location=\'index.php?showimage=<IMAGE_PREVIOUS_ID>\';"></a>');
}
if (existnext != "<IMAGE_ID>"){
document.write('<a href="#" id="menu_browse_next" onclick="document.location=\'index.php?showimage=<IMAGE_NEXT_ID>\';"></a>');
}
</script></div>
</div>
Code:
<div id="image">
<img src="./images/<IMAGE_NAME>" id="imgmaine" width="<IMAGE_WIDTH>" height="<IMAGE_HEIGHT>" />
<div id="menu_browse" style="width: <IMAGE_WIDTH>px; height:<IMAGE_HEIGHT>px;">
<script type="text/javascript">
var existprev = "<SC_IMAGE_PREVIOUS_LINK_TXT> (#<SC_IMAGE_PREVIOUS_ID>, <SC_IMAGE_PREVIOUS_TITLE>, <SC_IMAGE_PREVIOUS_DATETIME_FORM>) ";
var existnext = "<SC_IMAGE_NEXT_LINK_TXT> (#<SC_IMAGE_NEXT_ID>, <SC_IMAGE_NEXT_TITLE>, <SC_IMAGE_NEXT_DATETIME_FORM>)";
if (existprev != "<IMAGE_ID>"){
document.write('<a href="#" id="menu_browse_prev" onclick="document.location=\'index.php?showimage=<SC_IMAGE_PREVIOUS_ID>\';"></a>');
}
if (existnext != "<IMAGE_ID>"){
document.write('<a href="#" id="menu_browse_next" onclick="document.location=\'index.php?showimage=<SC_IMAGE_NEXT_ID>\';"></a>');
}
</script></div>
</div>
http://www.folkphotography.com/attic/ Thanks for the great addon and for any help with this.
__________________
folkphotography |
|
#129
|
||||
|
||||
|
Hmmm I am floundering. I guess the problem lies in:
Quote:
Code:
<a href="#" id="menu_browse_prev" onclick="document.location = 'index.php?showimage=<SC_IMAGE_PREVIOUS_ID>';"></a>
__________________
folkphotography |
|
#130
|
||||
|
||||
|
Yeap - it should work (the last example of code).
I need some free time to make web page with all my addons, to create docs to them and so on. This isnt easy :/ |
| Post Reply |
| Thread Tools | |
|
|