TechEnclave
New Tech Posts
New Market Posts



Reply
 
LinkBack Thread Tools
  #31 (permalink)  
Old 6 Mar 09, 12:53 AM
saqib_khan's Avatar
I M A STAR
 
Join Date: Feb 2009
Location: Surat
Posts: 652
saqib_khan is somewhat of a mystery
Default Re: Questions related to wordpress

Quote:
Originally Posted by ravi_9793


I think All in one seo plugin has option for title. check "All in one SEO" plugin setting.
This trick worked, thanx,
Reply With Quote
  #32 (permalink)  
Old 6 Mar 09, 03:03 AM
Gaurish's Avatar
Explosive Member
 
Join Date: Apr 2006
Location: Jaipur
Posts: 2,226
Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed
Default Re: Questions related to wordpress

Anyone knows how to widgetize a theme?
Reply With Quote
  #33 (permalink)  
Old 6 Mar 09, 06:13 PM
saqib_khan's Avatar
I M A STAR
 
Join Date: Feb 2009
Location: Surat
Posts: 652
saqib_khan is somewhat of a mystery
Default Re: Questions related to wordpress

Do u mean, u want to add more widgets in wordpress?
Reply With Quote
  #34 (permalink)  
Old 7 Mar 09, 07:33 AM
ravi_9793's Avatar
Windows 7 User
 
Join Date: Nov 2007
Location: www.techhunt.org
Posts: 257
ravi_9793 is very Respectable ravi_9793 is very Respectable ravi_9793 is very Respectable
Default Re: Questions related to wordpress

Quote:
Originally Posted by Gaurish View Post
Anyone knows how to widgetize a theme?
This may help you:
How to Widgetize non-widget Wordpress theme | Wordpress

Make Your WordPress Theme Widget-Ready Tutorial - See How Easy It Is To Widgetize WordPress Themes | Theme Lab
Reply With Quote
  #35 (permalink)  
Old 7 Mar 09, 07:34 AM
ravi_9793's Avatar
Windows 7 User
 
Join Date: Nov 2007
Location: www.techhunt.org
Posts: 257
ravi_9793 is very Respectable ravi_9793 is very Respectable ravi_9793 is very Respectable
Default Re: Questions related to wordpress

Quote:
Originally Posted by saqib_khan View Post
This trick worked, thanx,
My pleasure mate
Reply With Quote
  #36 (permalink)  
Old 7 Mar 09, 06:14 PM
Junior Member
 
Join Date: Mar 2009
Location: UK
Posts: 16
Monalisa is Mysterious
Default Re: Questions related to wordpress

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
Reply With Quote
  #37 (permalink)  
Old 7 Mar 09, 11:20 PM
ravi_9793's Avatar
Windows 7 User
 
Join Date: Nov 2007
Location: www.techhunt.org
Posts: 257
ravi_9793 is very Respectable ravi_9793 is very Respectable ravi_9793 is very Respectable
Default Re: Questions related to wordpress

Quote:
Originally Posted by Monalisa View Post
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.
Reply With Quote
  #38 (permalink)  
Old 8 Mar 09, 12:48 AM
saqib_khan's Avatar
I M A STAR
 
Join Date: Feb 2009
Location: Surat
Posts: 652
saqib_khan is somewhat of a mystery
Default Re: Questions related to wordpress

Anyone know how to enable comments on static pages, like in about page or any other page we create. I m using wordpress 2.7.

I wanna enable comments on pages we create .
Reply With Quote
  #39 (permalink)  
Old 8 Mar 09, 11:01 AM
ravi_9793's Avatar
Windows 7 User
 
Join Date: Nov 2007
Location: www.techhunt.org
Posts: 257
ravi_9793 is very Respectable ravi_9793 is very Respectable ravi_9793 is very Respectable
Default Re: Questions related to wordpress

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(); ?>
Reply With Quote
  #40 (permalink)  
Old 8 Mar 09, 04:55 PM
Gaurish's Avatar
Explosive Member
 
Join Date: Apr 2006
Location: Jaipur
Posts: 2,226
Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed Gaurish is highly Famed
Default Re: Questions related to wordpress

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(); ?>
    * <li><h2>Most Popular Posts</h2>
         <ul>
         <?php akpc_most_popular(); ?>
         </ul>
      </li>
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
Reply With Quote
  #41 (permalink)  
Old 8 Mar 09, 11:01 PM
saqib_khan's Avatar
I M A STAR
 
Join Date: Feb 2009
Location: Surat
Posts: 652
saqib_khan is somewhat of a mystery
Default Re: Questions related to wordpress

ok done that ravi, thank u again

But comments are appearing to the extreme left of my page and they leave no white space like my main page.

So i used <center> tag , so now my comments are centered better then previous, but any idea how to make comments like my main page.

Example in my main page, some white space appears and then comments but now no white space and directly comments to the extreme left. Its ok, now i use center tag but then also what to do to make it like my main page?

One thing is worth telling u , that u have very good knowledge of wordpress.
Reply With Quote
  #42 (permalink)  
Old 9 Mar 09, 02:51 PM
ravi_9793's Avatar
Windows 7 User
 
Join Date: Nov 2007
Location: www.techhunt.org
Posts: 257
ravi_9793 is very Respectable ravi_9793 is very Respectable ravi_9793 is very Respectable
Default Re: Questions related to wordpress

Quote:
Originally Posted by saqib_khan View Post
ok done that ravi, thank u again

But comments are appearing to the extreme left of my page and they leave no white space like my main page.

So i used <center> tag , so now my comments are centered better then previous, but any idea how to make comments like my main page.

Example in my main page, some white space appears and then comments but now no white space and directly comments to the extreme left. Its ok, now i use center tag but then also what to do to make it like my main page?

One thing is worth telling u , that u have very good knowledge of wordpress.
can I know your blog url, and theme url that you are using ??
Reply With Quote
  #43 (permalink)  
Old 9 Mar 09, 02:54 PM
ravi_9793's Avatar
Windows 7 User
 
Join Date: Nov 2007
Location: www.techhunt.org
Posts: 257
ravi_9793 is very Respectable ravi_9793 is very Respectable ravi_9793 is very Respectable
Default Re: Questions related to wordpress

Quote:
Originally Posted by Gaurish View Post
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(); ?>
    * <li><h2>Most Popular Posts</h2>
         <ul>
         <?php akpc_most_popular(); ?>
         </ul>
      </li>
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
Not sure, but you need to add code in footer.php

Look footer.php page and find what class "Older Posts" is using. Use same class to add "Most Popular post" code.
Reply With Quote
  #44 (permalink)  
Old 9 Mar 09, 03:53 PM
saqib_khan's Avatar
I M A STAR
 
Join Date: Feb 2009
Location: Surat
Posts: 652
saqib_khan is somewhat of a mystery
Default Re: Questions related to wordpress

Quote:
Originally Posted by ravi_9793
can I know your blog url, and theme url that you are using ??
Yes, ofcourse, my blogs url is A Techie's blog for computer hardware and software, tips, tricks and workshops for Windows and Linux . U can view comments structure by clicking on "About" page. On main page it is OK.
Reply With Quote
  #45 (permalink)  
Old 9 Mar 09, 04:00 PM
saqib_khan's Avatar
I M A STAR
 
Join Date: Feb 2009
Location: Surat
Posts: 652
saqib_khan is somewhat of a mystery
Default Re: Questions related to wordpress

Hey how to edit posts in this forum?

And added reputation to u ravi .
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Search TechEnclave
Register on TechEnclave to Remove the ads and the sidebar
Have some Fun!


Main Sections     New To TechEnclave?     Need Help?

Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.2