This topic has 11 replies, 6 voices, and was last updated 9 years, 11 months ago by Anonymous.
Viewing 12 posts - 1 through 12 (of 12 total)
4 Problems:
1) the option to remove the author form the most using the Theme Options Panel does not work.
2) the read more button does not appear in blog posts.
3) when viewing posts by a specific author the featured image, which looks fine everywhere else, the “post_content” shrinks because of “two_third” css. example – http://www.aivahthemes.com/lifecare/author/aivah_system32/
4) when viewing a post the subheader still says blog instead of the post title, is there a way to have it display post title instead of “Blog”
Please don’t create the too many topics instead of that you can create the one topic and list all your quires then it will very easy for me to support. If you want the live please contact us via Skype. Our Skype ID: support-aws
Regards,
Mawk
In looking at demo example I see that
is added in text mode.
Is there another way to add this more button? Via a shortcode?
Are the excepts in blog post used? Would adding an excerpt automatically add the read more button?
Thank you!
I have the same problem with blog posts. No matter what I do, I keep getting full articles.
We used read more link and excerpt in blog shortcode but there is no separate shortcode for the read more to display.
And adding an excerpt doesn’t adds the read more button automatically. Excerpt just displays the short description of the post.
Where does an excerpt displays short description?
I added <!–more–> in the text and Read more button is now displayed but when somebody clicks on it the URL of my blog post changes and adds #more on the end. How will that affect on my SEO? It’s not a great solution, you should consider and option where excerpt is the short description it is more SEO friendly and it’s how others use it. In next update please please do that.
If you don’t want to get #more at the end of blog post, then add this code in functions.php,
function remove_more_jump_link($link) {
$offset = strpos($link, '#more-');
if ($offset) {
$end = strpos($link, '"',$offset);
}
if ($end) {
$link = substr_replace($link, '', $offset, $end-$offset);
}
return $link;
}
add_filter('the_content_more_link', 'remove_more_jump_link');
And for the excerpt, excerpt is used in blog post shortcode.
@enjoyordie
I second that! Did not notice that #more gets added to the url and also question the SEO friendlyness.
Agree with adding an excerpt should automatically add the read more button as that is how most other themes function.
@Shailaja
What is meant by “excerpt is used in blog post shortcode”?
How are excerpts used in this theme because they do not seem to function like they do in other theme – where adding an excerpt should automatically add a read more.
Hi there,
Just wondering if there is a simple solution to this. I would also like my blog home page to just display a picture, title and a few sentences (pretty much exactly as you have it on the blog page of your demo…with the read more button).
Please instruct me how to change this. Thanks.
Please disregard. Figured this out the easy way…
Viewing 12 posts - 1 through 12 (of 12 total)
You must be logged in to reply to this topic.