Gossamer Forum
Home : Products : Links 2.0 : Customization :

Script Resource Section Templates...

Quote Reply
Script Resource Section Templates...
Problem with the Script Resource Section Templates....
I installed the nested if mod correctly.
It shows the catagories correct but it does not display any resources. Has anyone else ran into this problem?
Quote Reply
Re: Script Resource Section Templates... In reply to
Wow! The same happened to me using the Web Crawler templates. http://www.netoo.phiberoptix.com/ Whats up with this?

------------------
Quote Reply
Re: Script Resource Section Templates... In reply to
In reply to Jimz,

I have developed a new zip file that now shows up correctly. I don't know if you have d/l the most recent one, but the link from the Gossamer-Threads Modification page is not the recent one. In fact, it is the first zip file developed. There have many more updates there after and I have already sent a url update so the next time he updates his resource modification page, it will have the most recent zip file. For now you can download it from http://www.clanworld.org/...ities/webcrawler.zip

______________
XanthisHP
EGN3D
http://www.clanworld.org/egn

[This message has been edited by XanthisHP (edited May 25, 1999).]
Quote Reply
Re: Script Resource Section Templates... In reply to
Will that work on the Script Resource Section Templates?
Quote Reply
Re: Script Resource Section Templates... In reply to
I just jumped on here with the purpose of seeking help with the same problem with the Script Resource templates. I also added the nested if mod as specified in the readme, but it would seem more modifications need to be made.

I've done some tinkering to no avail, so I kindly take Mr. Japwebs side in requesting any advice one may have to offer.
Quote Reply
Re: Script Resource Section Templates... In reply to
The problem is with the Nested if mod, it apparently does not handle <%ifnot%> correctly. To fix, edit link.html template and replace:

Code:
<%if Details%>
<a href="<%build_detail_url%>/<%ID%>.html"><%Title%></a>
<%endif%>

<%ifnot Details%>
<a class="link" href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>"><%Title%></a>
<%endif%>

with just:

Code:
<%if Details%>
<a href="<%build_detail_url%>/<%ID%>.html"><%Title%></a>
<%endif%>

Hope this helps,

Alex
Quote Reply
Re: Script Resource Section Templates... In reply to
Worked like a charm. Thanks, Alex.
Quote Reply
Re: Script Resource Section Templates... In reply to
I am still having problems. It shows the description of the link, but it doesnt show the link itself. Does anyone know what could be up?
Quote Reply
Re: Script Resource Section Templates... In reply to
Its not just with that template, its with all of them.

------------------
Quote Reply
Re: Script Resource Section Templates... In reply to
Japweb,
Try looking at your link.html template?


------------------
Quote Reply
Re: Script Resource Section Templates... In reply to
I did do that to link.html. But those lines are not in the other templates.
Quote Reply
Re: Script Resource Section Templates... In reply to
Here is my site:
http://glynx.hypermart.net/resources/

it shows the catagories right but it doesn't show the links. By the way, the header and footer part of the page isn't functional cause I have not edited them yet.
Quote Reply
Re: Script Resource Section Templates... In reply to
I got it working. I just remove the <%if links%> and <%end if%> tags.