{serendipity_printSidebar} alternate tpl?

Random stuff about serendipity. Discussion, Questions, Paraphernalia.
Post Reply
Don Chambers
Regular
Posts: 3659
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

{serendipity_printSidebar} alternate tpl?

Post by Don Chambers »

Part 1:
Is it, or could it be, possible to specify an alternate tpl file for a sidebar?

What I am thinking is that I might want one sidebar.tpl as my normal, but perhaps sidebar_right.tpl for the right.

I'm thinking something like:

Code: Select all

{serendipity_printSidebar side="right" template="sidebar_right.tpl"}
Part 2:
We have the ability to create sidebar containers other than left and right.

Lets say I have a sidebars named left, bottom, right (and hide) that I have created in my template configuration. I can do {if $leftSidebarElements > 0} and the same for right, but at the moment, I cannot do {if $bottomSidebarElements > 0}.... can that become reality?
=Don=
abdussamad
Regular
Posts: 117
Joined: Fri Apr 21, 2006 10:11 pm
Location: Karachi, Pakistan
Contact:

Post by abdussamad »

Part 2:
We have the ability to create sidebar containers other than left and right.

Lets say I have a sidebars named left, bottom, right (and hide) that I have created in my template configuration. I can do {if $leftSidebarElements > 0} and the same for right, but at the moment, I cannot do {if $bottomSidebarElements > 0}.... can that become reality?
I can help you with that. Just add these two lines in your theme's config.inc.php file:

Code: Select all

$BottomSidebarElements = serendipity_plugin_api::count_plugins('bottom');

$serendipity['smarty']->assign_by_ref('BottomSidebarElements', $BottomSidebarElements);
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: {serendipity_printSidebar} alternate tpl?

Post by garvinhicking »

Hi!

Part1 committed to SVN, with the syntax you described.

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Don Chambers
Regular
Posts: 3659
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post by Don Chambers »

I love it when a plan comes together!!! :D

Thanks Abdussamad & Garvin!
=Don=
Post Reply