Is it possible to remove the subnavigation from the sidebar?
Also is it possible to remove the links from the slider images?
Thanks,
Jeff
Is it possible to remove the subnavigation from the sidebar?
Also is it possible to remove the links from the slider images?
Thanks,
Jeff
Hey!
In sidebar.php you can remove this code to remove the sub-navigation
<div class="small_box widget_pages">
<h3>Sub-Navigation</h3>
</div>
Regards,
Noah
To remove the subnavigation open up sidebar.php and search following code:
<?php
$children = wp_list_pages("title_li=&sort_column=menu_order&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<div class="small_box widget_pages">
<h3>Sub-Navigation</h3>
<ul>
<?php echo $children; ?>
</ul>
</div>
<?php }
replace it with
<?php
2) To remove the link open index.php and search following code:
$link = get_permalink();
replace it with:
$link = "";You must log in to post.