Hello, I can expand the content of my post on the blog home page and do not leave me the option of [...], I want to define autonomy as displayed on each post.
And also like the option of labels hidden in comments section of each post.
thanks
Hello, I can expand the content of my post on the blog home page and do not leave me the option of [...], I want to define autonomy as displayed on each post.
And also like the option of labels hidden in comments section of each post.
thanks
Hey!
you need to open includes/loop-index.php and replace:
if(is_search() || avia_is_overview())
{
the_excerpt();
}
else
{
the_content(__('Read more →','avia_framework'));
}
with
the_content(__('Read more →','avia_framework'));
now you can cut the blog pages with the wordpress "read more" tag when writing a post
I am not sure what you mean by hiding the labels of each comment?
Do you mean hidding the comment form? if so you can simply close comments for a post to hide the comment form
Hello,
How do you do this same thing in the portfolio pages?
Hi!
In includes/loop-portfolio.php replace:
the_excerpt();
with:
the_content(__('Read more →','avia_framework'));
Best regards,
Peter
This topic has been closed to new replies.