How can I get the related categories to display in two columns instead of one?
Feb 4, 2003, 5:18 PM
Veteran (2312 posts)
Feb 4, 2003, 5:18 PM
Post #2 of 9
Views: 2372
Well, not really a quick help, for your more column related categories problem, but maybe it is a good news, that later this feature will be available in my under development Xtended Link Display (XLD) plugin.
You can find more info about the planned features of my plugin in this thread:
- [PLUGIN] Xtended Link Display plugin development news
The plugin release date is not known at the moment.
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
You can find more info about the planned features of my plugin in this thread:
- [PLUGIN] Xtended Link Display plugin development news
The plugin release date is not known at the moment.
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
Feb 5, 2003, 5:20 AM
Veteran (2312 posts)
Feb 5, 2003, 5:20 AM
Post #4 of 9
Views: 2372
When new information will be available, will be posted into the news thread mentioned above.
I suggest you to set the "[PLUGIN] Xtended Link Display plugin development news" thread to Watch thread, so you will get email if new info is posted there.
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
I suggest you to set the "[PLUGIN] Xtended Link Display plugin development news" thread to Watch thread, so you will get email if new info is posted there.
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
Feb 5, 2003, 10:38 AM
Veteran (2312 posts)
Feb 5, 2003, 10:38 AM
Post #6 of 9
Views: 2356
Thanks Paul, for your question.
Of course using hooks. However the plugin is not finished yet, so I would not tell more about it, until it will be not released officially. I will post all info available for the public into the news thread.
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
Of course using hooks. However the plugin is not finished yet, so I would not tell more about it, until it will be not released officially. I will post all info available for the public into the news thread.
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
Feb 5, 2003, 10:55 AM
Veteran (19537 posts)
Feb 5, 2003, 10:55 AM
Post #7 of 9
Views: 2339
How did you manage to do that?
I just took a look at the build module and it seems the related category output is built directly in the code...
if ($rel_name) {
$display{related} .= qq~<li><a href="$url">$rel_name</a></li>~;
}
else {
$display{related} .= qq~<li><a href="$url">$cat->{Full_Name}</a></li>~;
}
I just took a look at the build module and it seems the related category output is built directly in the code...
Code:
my $url = $CFG->{build_root_url} . "/" . $cat_db->as_url ($cat->{Full_Name}) . "/" . $CFG->{build_index}; if ($rel_name) {
$display{related} .= qq~<li><a href="$url">$rel_name</a></li>~;
}
else {
$display{related} .= qq~<li><a href="$url">$cat->{Full_Name}</a></li>~;
}
Feb 5, 2003, 1:43 PM
Veteran (2312 posts)
Feb 5, 2003, 1:43 PM
Post #8 of 9
Views: 2344
Yes, it is. I've nothing to say about that. Sorry.
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...