Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Finding/Removing Bullet points (<ul> & <li>)

Quote Reply
Finding/Removing Bullet points (<ul> & <li>)
I've been searching high and low for where I can find the line item tags

Code:


<ul> <li>

for the results from the New page and for the categories listed on a search results page. Anyone have a clue where these are since they don't seem to be in the templates?
Quote Reply
Re: [misteraven] Finding/Removing Bullet points (<ul> & <li>) In reply to
I think these are both part of the core code. You will need to write a global to rewrite the returned code unless you are willing to edit the files.

$category_results .= "<li>$title\n"; is in Search.pm

and

push @output, qq~<li><a href="$CFG->{build_new_url}/$date$CFG->{build_extension}">$long_date</a> ($count)~;

is in Build.pm
Quote Reply
Re: [afinlr] Finding/Removing Bullet points (<ul> & <li>) In reply to
Perfect. Many thanks.