can you please give more detail? and post the page link here.
on the post i dont want sidebar. i know how to remove it on page
maybe the below code will help you.
is_singular()
is_single()
id sidebar.php add this and check.
if(!is_single){
if(function_exists('dynamic_sidebar')){
dynamic_sidebar('your_sidebar');
}
}
and for both page and posts.
if(!is_single && !is_page){
sidebar goes here
}
Oh, ok… do you have some basic knowledge of PHP? if yes then you can modify your sidebars.. or if you don’t want to play with PHP and just want to hide the sidebar from post and page, you can do that by css..?