I am newbie to wordpress particular , not having much knowledge about CSS and PHP. I have installed Revolution Mag theme for my domain. But i am facing very strange problem , 'Featured Content Gallery' which is a wordpress plugin is installed display on home page , but due to some problem it is displaying on single post page also , any one can help me why this problem is coming. I am using wordpress 2.3.3 This is the screenshot of my problem http://i199.photobucket.com/albums/aa108/funtosh2/problem.jpg Code (markup): p.s : i posted here as i find most suitable ( its not html issue so i post it here ) sorry if wrong section
So you don't want it to display on a single post page altogether? Open up single.php inside your theme folder and you should find some code related to it inside there and just get rid of it.
From the picture it looks as if the plugin is showing up under your sidebar.php file so you will need to create a php if statement to show it only on the homepage. That would look something like.... <?php if(is_single()) { code goes here } else { show plugin here } ?> Something along those lines...kind of hard to know exactly what needs to be done without seeing the code.