I just Install a Plugin Number of View on my wordpress blog name movieplace.in, in this blog post number of view is showing in the bottom of the post. but i want to change it place. I want it to show below Title. so user can easily know how much time this topic has been view. Please suggest me how to solve this. Devprakash
Open hitcount.php in plugin directory, find function displayhitcount($content){ ... } and in the function change $content = $content. "number of view: ".$hits; Code (markup): to $content = "number of view: ".$hits.$content; Code (markup):