Hello guys !
I recently decided to built my portfolio with wordpress and chose the Flexible template by Elegant. This template shows a portfolio grid on the home and once you've selected an image, an excerpt shows up.
The code I need to change is, I think, in the functions.php document here (line 348) :
echo '</div> <!-- end .et_media -->';
echo '<div class="et_media_description">' .
'<h2 class="title">' . '' . get_the_title() . '' . '</h2>' .
truncate_post( 560, false );
echo '</div> <!-- end .et_media_description -->';
echo '' . __( 'More info »', 'Flexible' ) . '';
endwhile;
wp_reset_postdata();
die();
}
I've already figure that I had to change the number in « truncate_post » to show the entier text but I can't find how to show all the images. If someone has a clue, it would be really really usefull !
Thanks you by advance for your answers : )