Support Forum
anxious to find out myself!! Andy just added it today while I was at work - have not tried it yet... so, its possible its not complete and working yet either and he is gone for night...
5 second look at the plugin, though and it seems you have to use the template tag
sp_FontResizer()
put it in your theme where you want the resize controls to show...
Visit Cruise Talk Central and Mr Papa's World
well, thats where you put it...
can actually put it anywhere you want... but spHead and spFoot probably make the most sense... or elsewhere in your wp theme perhaps on the forum custom page template...
Visit Cruise Talk Central and Mr Papa's World
I have just added the sp_FontResizer() call in the footer and for some reason it doesn't work anymore, I'm sure it did previously. I added it in the same way to the header and it's fine. I can see the graphics but clicking on them has no effect. Why is this?
How do you embed code so it keeps the formatting from the editor?
See below:
#
# Simple:Press Template
# Theme : default
# Template : foot
# Version : 1.0
# Author : Simple:Press
#
# The 'foot' template can be used for all forum content that is to be
# displayed at the bottom of every forum view page
#
# --------------------------------------------------------------------------------------
# Mandatory call to sp_FooterBegin() - available to custom code
# ----------------------------------------------------------------------
sp_FooterBegin();
# Start the 'pageBottomStatus' section
# ----------------------------------------------------------------------
sp_SectionStart('tagClass=spPlainSection', 'pageBottomStatus');
sp_AllRSSButton('tagClass=spButton spLeft spAllRSSButton', __sp('All RSS', 'spIforum'), __sp('Subscribe to the all forums RSS feed', 'spIforum'));
if (function_exists('sp_SubscriptionsSubscribeButton')) sp_SubscriptionsSubscribeButton('tagClass=spButton spLeft', __sp('Subscribe', 'spIforum'), __sp('Unsubscribe', 'spIforum'), __sp('Subscribe to this topic', 'spIforum'), __sp('Unsubscribe from this topic', 'spIforum'));
if (function_exists('sp_WatchesWatchButton')) sp_WatchesWatchButton('tagClass=spButton spLeft', __sp('Watch', 'spIforum'), __sp('Stop Watching', 'spIforum'), __sp('Watch this topic', 'spIforum'), __sp('Stop watching this topic', 'spIforum'));
sp_GoToTop('tagClass=spRight spGoToTop&iconClass=spIcon', '', __sp('Go to top', 'spIforum'));
sp_SectionEnd('tagClass=spClear', 'pageBottomStatus');
sp_FontResizer();
# Start the 'stats' section
What like this?
# Mandatory call to sp_FooterBegin() – available to custom code # ———————————————————————- sp_FooterBegin();
# Start the 'pageBottomStatus' section # ———————————————————————- sp_SectionStart('tagClass=spPlainSection', 'pageBottomStatus'); sp_AllRSSButton('tagClass=spButton spLeft spAllRSSButton', __sp('All RSS', 'spIforum'), __sp('Subscribe to the all forums RSS feed', 'spIforum')); if (function_exists('sp_SubscriptionsSubscribeButton')) sp_SubscriptionsSubscribeButton('tagClass=spButton spLeft', __sp('Subscribe', 'spIforum'), __sp('Unsubscribe', 'spIforum'), __sp('Subscribe to this topic', 'spIforum'), __sp('Unsubscribe from this topic', 'spIforum')); if (function_exists('sp_WatchesWatchButton')) sp_WatchesWatchButton('tagClass=spButton spLeft', __sp('Watch', 'spIforum'), __sp('Stop Watching', 'spIforum'), __sp('Watch this topic', 'spIforum'), __sp('Stop watching this topic', 'spIforum')); sp_GoToTop('tagClass=spRight spGoToTop&iconClass=spIcon', '', __sp('Go to top', 'spIforum')); sp_SectionEnd('tagClass=spClear', 'pageBottomStatus');
sp_FontResizer();
# Start the 'stats' section
will open a ticket to include it in the default theme...
and want to test cod insertion...
function spa_create_group_select($groupid = 0) { $groups = spdb_table(SFGROUPS, '', '', "group_seq"); $out=''; $default=''; $out.= '<option value="">'.spa_text('Select forum group:').'</option>'; if ($groups) { foreach ($groups as $group) { if ($group->group_id == $groupid) { $default = 'selected="selected" '; } else { $default - null; } $out.='<option '.$default.'value="'.$group->group_id.'">'.sp_filter_title_display($group->group_name).'</option>'."\n"; $default=''; } } return $out; }
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)