here is the site i am working on : http://www.rahulurs.com/bevilsgarage/
I have four widgets right on my homepage Featured Top Left, Featured Top Right, Featured Bottom and primary sidebar widget area. I need to remove primary sidebar widget area and Featured Bottom out of the homepage…any ideas ??
You would have to edit the theme file that calls in the sidebars. You would need to put in a conditional statement checking to see if the current page is the front page.
<?php
if ( !is_front_page() ) {
// display my sidebar
}
?>