You must be logged in to post Login


Lost Your Password?

Search Forums:


 






Minimum search word length is 4 characters – Maximum search word length is 84 characters
Wildcard Usage:
*  matches any number of characters    %  matches exactly one character

Author Box Plugin

UserPost

3:53 am
November 18, 2010


Dana

Member

posts 633

Hi Yakezie's!

I'm looking for a wordpress plugin to add an author bio box to the bottom of posts.  Recommendations anyone?   

 

Dana

 

Dana 

Site:      
Gmail:   
Twitter:  

7:11 am
November 18, 2010


Mike – Saving Money Today

Member

posts 520

Hi Dana,

I have an author box at the bottom of each of my posts, but it's not a plugin.  Elle from Couple Money showed me how to add some code right into my Thesis theme to make it work.  Here's a link that explains how to do it:

http://samswebguide.com/2010/0…..hesis-1-6/

It was actually pretty simple, but if you run into problems I can help walk you though it.

Mike

9:27 am
November 18, 2010


Chris Johnson

Admin

posts 78

Hey, Dana.  Yakezie's author box is also not a plugin, but an extension of Wordpress's built in functionality.  If you do not have Thesis (or a thesis based theme, Yakezie is not based on Thesis) than you might need to dig a little bit into the code of your theme to add a box.  To display, the different bits of information stored for the author of a post, use the "get_the_author_meta()" function, completely discussed here:

http://codex.wordpress.org/Fun…..uthor_meta

If you have no interest in editing your Wordpress theme, check out the "Author Box Reloaded" plugin (never used it, but I think it will do what you want) or "Cool Author Box" (also never used it either; it appears that the first choice is more widely adopted).  Of course, I am not sure how much control either of these plugins with give you as far as color and style go, so they may not match your theme.  If you really want something that matches your site, and you cannot or do not want to edit your theme code, you may want to consider hiring someone to take care of this for you.  It would probably take about 1 hour to do this (perhaps up to 2, depending on how much back and forth you have with this person) for an experienced Wordpress Developer.

Hope this helps!

P.S. If you would like, I can send you or post here the PHP code that we use for Yakezie's author box if you would like something for reference.  It will require some CSS work as well, which I can post with it.

Yakezie Webmaster.
If it's broke I will try to fix it.  If you need help, let me know and I will see what I can do.

9:53 am
November 18, 2010


Dana

Member

posts 633

Mike – Saving Money Today said:

Hi Dana,

I have an author box at the bottom of each of my posts, but it's not a plugin.  Elle from Couple Money showed me how to add some code right into my Thesis theme to make it work.  Here's a link that explains how to do it:

http://samswebguide.com/2010/0…..hesis-1-6/

It was actually pretty simple, but if you run into problems I can help walk you though it.

Mike


Thanks Mike.  Headed over now to check it out. 

 

Dana 

Site:      
Gmail:   
Twitter:  

3:29 am
November 19, 2010


Dana

Member

posts 633

Chris Johnson said:

Hey, Dana.  Yakezie's author box is also not a plugin, but an extension of Wordpress's built in functionality.  If you do not have Thesis (or a thesis based theme, Yakezie is not based on Thesis) than you might need to dig a little bit into the code of your theme to add a box.  To display, the different bits of information stored for the author of a post, use the "get_the_author_meta()" function, completely discussed here:

http://codex.wordpress.org/Fun…..uthor_meta

If you have no interest in editing your Wordpress theme, check out the "Author Box Reloaded" plugin (never used it, but I think it will do what you want) or "Cool Author Box" (also never used it either; it appears that the first choice is more widely adopted).  Of course, I am not sure how much control either of these plugins with give you as far as color and style go, so they may not match your theme.  If you really want something that matches your site, and you cannot or do not want to edit your theme code, you may want to consider hiring someone to take care of this for you.  It would probably take about 1 hour to do this (perhaps up to 2, depending on how much back and forth you have with this person) for an experienced Wordpress Developer.

Hope this helps!

P.S. If you would like, I can send you or post here the PHP code that we use for Yakezie's author box if you would like something for reference.  It will require some CSS work as well, which I can post with it.


Thanks so much for the info Chris.  I am on the Thesis theme and used the code that Mike recommended above.  Worked like a charm!

 

Dana 

Site:      
Gmail:   
Twitter:  

5:14 am
November 19, 2010


Mike – Saving Money Today

Member

posts 520

Looks great Dana!

6:26 am
November 19, 2010


Dana

Member

posts 633

Thanks Mike for your help!  Laugh

 

Dana 

Site:      
Gmail:   
Twitter:  

8:08 am
November 19, 2010


Invest It Wisely

Member

posts 2019

Here's how I did mine by adding the below code to the "Single Post" PHP file; I found some tutorials after searching and adapted the code to my theme. I added a condition so the box doesn't show if the author is "Guest":

 

<!– Author byline –>

<?php if (get_the_author_meta('user_login') != "Guest") { ?>

<div id="authorarea">

<?php if (function_exists('get_avatar')) { echo get_avatar( get_the_author_email(), '100' );
}?>

<div class="authorinfo">

<h3>About <?php the_author_posts_link(); ?></h3>

<p><?php the_author_description(); ?></p>

</div>

</div>

<?php } ?>

8:10 am
November 19, 2010


Invest It Wisely

Member

posts 2019

Woops, didn't see that you already had a solution. Wink

 

Hope my code can help someone else out there.

2:03 pm
December 4, 2010


uhnw

Australia

Member

posts 101

I've been trying the above suggestions and still can't get the little box to appear at the bottom of my posts on the forum. Any other suggestions?

RSS Feed – Please subscribe

http://www.uhnw.com.au

Twitter http://www.twitter.com/ultahnw

Facebook Profile

 

Being rich is better than being poor – if only for financial reasons. – Woody Allen.

4:45 pm
December 4, 2010


Chris Johnson

Admin

posts 78

UHNW,

If I am not mistaken, the author box that you are refering to is a bit different that the subject of this post.  What Dana was originally discussing was getting an author box on a personal blog like the author box that appears for the POSTS on yakezie.com, not here in the forums.  The box that you are refering to is actually called a "Forum Signature" and that can be added by clicking on your username (uhnw, which will take you to your Forum Profile page) and then click the link that says "Edit Profile Record" at the bottom of that page.  Once in the editor, there is a tab (the tab on the far right) that says "Setup your Signature" which will give you what you are looking for.  Hope that helps,

Chris

Yakezie Webmaster.
If it's broke I will try to fix it.  If you need help, let me know and I will see what I can do.

6:19 pm
December 4, 2010


uhnw

Australia

Member

posts 101

OK Thanks – I'll give that a go.

RSS Feed – Please subscribe

http://www.uhnw.com.au

Twitter http://www.twitter.com/ultahnw

Facebook Profile

 

Being rich is better than being poor – if only for financial reasons. – Woody Allen.

11:54 am
December 5, 2010


Frugal Confessions

Houston, TX

Member

posts 1622

Chris Johnson said:

UHNW,

If I am not mistaken, the author box that you are refering to is a bit different that the subject of this post.  What Dana was originally discussing was getting an author box on a personal blog like the author box that appears for the POSTS on yakezie.com, not here in the forums.  The box that you are refering to is actually called a "Forum Signature" and that can be added by clicking on your username (uhnw, which will take you to your Forum Profile page) and then click the link that says "Edit Profile Record" at the bottom of that page.  Once in the editor, there is a tab (the tab on the far right) that says "Setup your Signature" which will give you what you are looking for.  Hope that helps,

Chris


Hi Chris!

 

I tried doing what you said, but I can't seem to find the "Edit Profile Record" link on my profile page. The page I am taken to when clicking on my name is: http://yakezie.com/wordpress/w…..rofile.php  Am I on the right page?

 

Thank you!

~Amanda

Frugal Confessions

Amanda L Grossman

Frugal Confessions

Frugal Confessions @ the Houston Chronicle

email: frugalconfessions@hotmail.com

4:52 pm
December 5, 2010


Chris Johnson

Admin

posts 78

Sorry, to be a bit more clear, click on your username in the forums.  So, on your previous post, where it says your name on the left, click that and you should be taken to the correct spot.

Yakezie Webmaster.
If it's broke I will try to fix it.  If you need help, let me know and I will see what I can do.


About the Yakezie.com Forum

Forum Timezone: America/Los_Angeles

Forum Stats:

Groups: 2
Forums: 9
Topics: 6383
Posts: 84794

Membership:

There are 13651 Members
There have been 20 Guests

There are 9 Admins
There are 8 Moderators

Top Posters:

My Personal Finance Journey – 3159
Khaleef @ KNS Financial – 3149
Budgeting in the Fun Stuff – 3048
Sustainable PF – 2759
Miss T @ Prairie Eco-Thrifter – 2213
Eric – PersonalProfitability.com – 2120

Administrators: The College Investor (1935 Posts), Financial Samurai (1803 Posts), LaTisha @YoungFinances (1715 Posts), Forest Parks (1337 Posts), 20s Finances (1147 Posts), Money Reasons (697 Posts), Chris Johnson (78 Posts), Sydney at Untemplater (0 Posts), Suba (0 Posts)

Moderators: Suba @ Wealth Informatics (1876 Posts), sooverthis (1041 Posts), PK @ DQYDJ (361 Posts), jmichelsen (208 Posts), Ramona (13 Posts), JeremyNJohnson (4 Posts), Moderator (0 Posts), rackgeek (0 Posts)