This topic has 3 replies, 2 voices, and was last updated 12 years, 7 months ago by Fem.
Viewing 4 posts - 1 through 4 (of 4 total)
In future updates are you able to allow an easy way to place items on the Sub-Navigation menu. I can currently do it by editing the ‘template_subpage.php’ file and I can see where I can place items. But if I then choose to update my theme, I will loose my changes.
http://www.newgatehosting.co.uk
Thanks
You can easily add items without editing the template. I don’t know how you are editing that page. Can you email me the the WP Logins to your site and make sure you set the reply as private post so that only admin can see the logins
Regards
Maqk
Please have a look at http://www.newgatehosting.co.uk/support and you will see I have added a review button for Searchen.
These are the additional bits I which to add. In the Host me V2 control panel, I see no option to add extra bits like social buttons etc.
Edit template_subpage.php and add the following code after line#59 before ending the div element. Now you can assign any custom sidebar for the subnav page template as well.
ID, 'custom_widget', true);
$widget = strtolower( preg_replace('/\s+/', '-',$widgets ) );
//loop through the widget pages
}
/**
* If current page falls under widget pages
* then display sidebar widgets accordingly
* Otherwise display default widgets
*/
if ( $widget ) {
if ( function_exists( 'dynamic_sidebar' ) && dynamic_sidebar( 'sidebar-'.$widget ) ) : endif;
} else {
if ( !dynamic_sidebar( 'defaultsidebar' )) :
endif;
}
?>
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.