Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Detailed View - how do I activate it..??

Quote Reply
Detailed View - how do I activate it..??
I've already enabled the option into my links.cgf file:
# Detailed View: The script can build a single html page per link. This is
# great if you have a review in your database. To enable, you must set
# the directory where all the pages will be stored, the url to that directory
# and set the enable option.
$build_detailed = 1;
$build_detail_path = "$build_root_path/Detailed";
$build_detail_url = "$build_root_url/Detailed";


Un the template link.html I have the following html code:

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

How do I activate the little square detailed..??
Thanks for your help.
Quote Reply
Re: Detailed View - how do I activate it..?? In reply to
 
Quote:
How do I activate the little square detailed..??

What is square detailed?

Can you be more specific?

Regards,

------------------
Eliot Lee
Founder and Editor
Anthro TECH, L.L.C
http://www.anthrotech.com/
info@anthrotech.com
==========================
Coconino Community College
http://www.coco.cc.az.us/
Web Technology
Coordinator
elee@coco.cc.az.us
Quote Reply
Re: Detailed View - how do I activate it..?? In reply to
The file link.html contains 4 IF conditions:

<%if isNew%>
<small><sup class="new">new</sup></small>
<%endif%>
<%if isPopular%>
<small><sup class="pop">pop</sup></small>
<%endif%>
<%if Details%>
<a href="<%build_detail_url%>/<%ID%>.html"><%Title%></a>
<%endif%>
<br>
<%if Description%>
<span class="descript"><%Description%></span>
<%endif%>

I thought that if I get the 'new' and 'pop' signs in a box.. it may by also 'details' also into a colored table also..

That's all and thanks for ur help.