I can't figure out how to display the name of the author of a post on blog posts using the Choices theme.
Our work-in-progress site is at http://www.imperativeinfo.com/ccra/
Thanks.
I can't figure out how to display the name of the author of a post on blog posts using the Choices theme.
Our work-in-progress site is at http://www.imperativeinfo.com/ccra/
Thanks.
Hi,
Go to your includes folder and look for loop-index.php. Please find this code.
/*
echo '<span class="blog-author minor-meta">'.__('by ','avia_framework');
the_author_posts_link();
echo '</span><span class="text-sep author-sep">/</span>';
echo '<span class="blog-permalink minor-meta">';
echo "<a href='".get_permalink()."'>".__('#permalink','avia_framework')."</a>";
echo '</span>';
*/
Replace it with this
echo '<span class="blog-author minor-meta">'.__('by ','avia_framework');
the_author_posts_link();
echo '</span><span class="text-sep author-sep">/</span>';
echo '<span class="blog-permalink minor-meta">';
echo "<a href='".get_permalink()."'>".__('#permalink','avia_framework')."</a>";
echo '</span>';
Regards,
Ismael
That worked so that I could see it. However I would like the Author of the post in the blog be by the date or title. I want it to be see with the title or the date and not hiding at the bottom. How do I do that? Also I when the page is view in IE 9 (Internet Explore 9) the "Feedback" is upside down and horizontal while it should be vertical and not upside down. How can I fix that?
Our work-in-progress site is at: http://www.imperativeinfo.com/ccra/
Thanks.
Hi,
I checked your site but it's not using the Choices theme.
Regards,
Ismael
I would like an answer to this also. I'm using the Choices theme. Is it possible to have author displayed more prominently (for ex, by date, title, or separate byline underneath title). I'm flexible. Or is my only option to have the author byline to be part of the text?
You can insert the author link with following code:
echo get_the_author_link();
or the author name with:
echo get_the_author();
- you can i.e. insert this code in includes/loop-index.php after the title - just replace:
echo $title;
with:
echo $title;
echo get_the_author_link();When the page is viewed in IE 9 (Internet Explore 9) the "Feedback" is upside down and horizontal while it should be vertical and not upside down. How can I fix that?
I am having this issue as well using the choices theme.
Hi!
Can you post a link to your website please?
Regards,
Peter
You must log in to post.