Questions related to wordpress

saqib_khan

Adept
Feb 19, 2009
907
8
32
36
www.technostarry.com
No ravi, thats also not working, I m getting this error: Error: There was an error connecting to the server, Please verify the settings are correct."

And any clue y i m not able to change my title ?
 

ravi_9793

Adept
Nov 21, 2007
395
16
81
39
www.techtin.com
saqib_khan said:
No ravi, thats also not working, I m getting this error: Error: There was an error connecting to the server, Please verify the settings are correct."
Try IP address (if you know).......

And any clue y i m not able to change my title ?
may be because of some plugins...
what plugins you have installed???
 

ravi_9793

Adept
Nov 21, 2007
395
16
81
39
www.techtin.com
Monalisa said:
i don't know much about Feedjit but to increase traffic to your blog you need to have fresh and updated contents there plus you have to optimize your site using seo techniques
agree with you.. content is king.
A good updated blog with quality and unique content will always get good traffic.
 

ravi_9793

Adept
Nov 21, 2007
395
16
81
39
www.techtin.com
you will need to edit page.php file of template.

Login in wordpress admin panel -> Appearance -> Edit

Select page.pgp page from right menu... and add this line.

Code:
<?php comments_template(); ?>

Look at bottom of page.php... the code will be something like this:

Code:
  </div>

  <?php get_sidebar(); ?>

</div>

<?php get_footer(); ?>

add the code just before the above code......

Final code should be like this:

Code:
<?php comments_template(); ?>

  </div>

  <?php get_sidebar(); ?>

</div>

<?php get_footer(); ?>
 

Gaurish

ex-Mod
Apr 7, 2006
3,326
135
101
124
Jaipur
www.gaurishsharma.com
Ravi, i also need little help in theme modification.

I want to insert Most Popular post in a separate box near older post at the bottom of every page.I have already installed Popularity plugin. to make it work, i need to add following code in template

Code:
    *  <?php akpc_most_popular(); ?>

    * [*]<h2>Most Popular Posts</h2>

         <ul>

         <?php akpc_most_popular(); ?>

         [/list]

i have tried adding it in functions.php but it says its a undefined function.

My theme is Lemon Twist

any help in this regard would be greatly appreciated;)