Gossamer Forum
Home : Products : Links 2.0 : Customization :

Re: How to change category display on add.html?

Quote Reply
Re: How to change category display on add.html? In reply to
You could either alter the select field sub in db_utils.pl or edit the add sub in site_html_templates.pl


The add sub is prob easier to edit so try the following.

Open site_html_templates.pl and find in the sub_html_add_form:


$category ?
($category = qq~$category <input type=hidden name="Category" value="$category">~) :
($category = &build_select_field ("Category", "$in{'Category'}"));


Replace it with:


if ($db_single_category == 1){
$category = qq~$category <input type=hidden name="Category" value="$category">~;
$category = &build_clean($in{'Category'});
}
else {
$category = &build_select_field ("Category", "$in{'Category'}");
}


Glenn

Links 2 Mods Site:
http://cgi-resource.co.uk/pages/links2mods.shtml
Subject Author Views Date
Thread How to change category display on add.html? B316 9232 Apr 26, 2001, 12:50 PM
Thread Re: How to change category display on add.html?
glennu 9037 Apr 26, 2001, 2:05 PM
Thread Re: How to change category display on add.html?
B316 9049 Apr 26, 2001, 2:18 PM
Thread Re: How to change category display on add.html?
glennu 9066 Apr 26, 2001, 2:22 PM
Thread Re: How to change category display on add.html?
B316 9088 Apr 26, 2001, 2:25 PM
Thread Re: How to change category display on add.html?
glennu 9045 Apr 26, 2001, 2:41 PM
Post Re: How to change category display on add.html?
B316 9061 Apr 26, 2001, 3:26 PM
Post Re: [glennu] How to change category display on add.html?
jigme 8848 Aug 24, 2003, 2:21 PM
Thread Re: [B316] How to change category display on add.html?
athair 8774 Nov 26, 2003, 5:42 AM
Thread Re: [athair] How to change category display on add.html?
asmith 8590 Apr 13, 2004, 4:27 PM
Thread Re: [asmith] How to change category display on add.html?
PerlFlunkie 8545 Apr 13, 2004, 7:49 PM
Thread Re: [PerlFlunkie] How to change category display on add.html?
asmith 8599 Apr 13, 2004, 7:59 PM
Thread Re: [asmith] How to change category display on add.html?
PerlFlunkie 8544 Apr 13, 2004, 8:35 PM
Thread Re: [PerlFlunkie] How to change category display on add.html?
asmith 8624 Apr 13, 2004, 8:49 PM
Post Re: [asmith] How to change category display on add.html?
PerlFlunkie 8551 Apr 13, 2004, 10:13 PM
Thread Re: [asmith] How to change category display on add.html?
athair 8528 Apr 15, 2004, 2:07 AM
Post Re: [athair] How to change category display on add.html?
asmith 8519 Apr 15, 2004, 10:40 AM