I'd like to see the full post and the date on the home page, not just the post page.
Thanks,
Justin
I'd like to see the full post and the date on the home page, not just the post page.
Thanks,
Justin
Hi,
could you link to your homepage? This way I'm certain I give you correct information.
Instead of the short version, I'd like to have the full post, with the date, like when you click the link to the post, if possible.
Thanks!
Justin
Open up 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'));
and in the code underneath delete all occurences of:
is_single() &&So I followed your instructions (as I understood them) and it caused the entire site to not display properly... Here is the section I edited:
From this...
<?php
if(is_search() || avia_is_overview())
{
the_excerpt();
}
else
{
the_content(__('Read more →','avia_framework'));
}
if(!post_password_required())
{
//embeded list gallery
if(is_single() && strpos($avia_config['layout'],'attached_images') !== false )
{
new avia_embed_images();
}
//embeded 3 column gallery
if(is_single() && strpos($avia_config['layout'],'three_column') !== false )
{
new avia_three_column();
}
//embeded list gallery
if(is_single() && strpos($avia_config['layout'],'gallery_shortcode') !== false )
{
global $gallery_active;
if(!$gallery_active) echo do_shortcode('[gallery force="avia"]');
}
}
if(has_tag() && is_single())
{
echo '<span class="blog-tags">';
echo the_tags(''.__('Tags: ','avia_framework').'<span>');
echo '</span></span>';
}
?>
To this...
<?php
the_content(__('Read more →','avia_framework'));
if(!post_password_required())
{
//embeded list gallery
if strpos($avia_config['layout'],'attached_images') !== false )
{
new avia_embed_images();
}
//embeded 3 column gallery
if strpos($avia_config['layout'],'three_column') !== false )
{
new avia_three_column();
}
//embeded list gallery
if strpos($avia_config['layout'],'gallery_shortcode') !== false )
{
global $gallery_active;
if(!$gallery_active) echo do_shortcode('[gallery force="avia"]');
}
}
if(has_tag() && is_single())
{
echo '<span class="blog-tags">';
echo the_tags(''.__('Tags: ','avia_framework').'<span>');
echo '</span></span>';
}
?>
Hi,
Just wanted to say that this solution worked perfectly for me.
Now I would like to be able to click on an image in the posts
and have it enlarge in a lightbox instead of going to another
page of the single blog post.
Might this be possible?
Check it out http://www.photoduo.com/blog/
Thanks....
Charlie
You must log in to post.