Viewing 3 replies - 1 through 3 (of 3 total)
  • Look in your theme files.
    The index.php is probably using the_excerpt() instead of the_content()
    If you edit your theme file, the full text and images will appear.

    Thread Starter treepop

    (@treepop)

    In the loop-index.php I found this:

    <div class="entry-content">
    				<?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"]');
    					}
    				}
    
    Could I just change the_excerpt() to the_content()?  I am no php guru by any means. I know basic html and css.

    Thanks so much for your help!

    Thread Starter treepop

    (@treepop)

    I also found this in the functions.php:

    //call functions for the theme
    add_filter('the_content_more_link', 'avia_remove_more_jump_link');
    add_post_type_support('page', 'excerpt');

    and this in the loop-portfolio.php:

    if($avia_config['portfolio_columns'] == 1)
    				{
    					echo '<span class="portfolio-categories">';
    					echo get_the_term_list(  get_the_ID(), 'portfolio_entries', '<strong>'.__('Categories','avia_framework').': </strong>', ', ','');
    					echo '</span>';
    				}
    
    				the_excerpt();
    				//echo '<a class="more-link" href="'. get_permalink().'">'.__('Read more  →','avia_framework').'</a>';
    				echo "</div>";

    And finally a couple mentions of excerpt in the config.php, the only one that says “the_excerpt()” is:

    # echo the excerpt
    #
    function avia_woocommerce_overview_excerpt()
    {
    	global $avia_config;
    
    	if(!empty($avia_config['shop_overview_excerpt']))
    	{
    		echo "<div class='product_excerpt'>";
    		the_excerpt();
    		echo "</div>";
    	}
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Blog not showing pictures in preview’ is closed to new replies.