Hi,
i am looking for a solution to show the full content of a Portfolio entry in the masonry or portfolio Grid instead of the excerp. This means i want to display the ull content, which i created by using the advanced Layout editor with all the av-elements. i am using a child-theme.
If the same would be possible for the Blogentries, that would be great. Show the fullcontent of the Blog instead of the entryimage, title is what i need.
Thanks for helping me.
Hey sevensixmedia,
Thank you for using our theme.
It is possible, but you need skills in WP and php. And you have to take care not to create endless loops due to the content (when using shortcodes in the content you want to display).
Here I can give you only hints what to do:
Portfolio Grid (file config-templatebuilder\avia-shortcodes\portfolio.php):
around line 113 add an option to “Display Excerpt and Title below the preview image?”
__('Content', 'avia_framework' ) =>'content',
around line 550:
case "content": $excerpt = do_shortcode( $entry->post_content ); $title = $entry->post_title; break;
or
case "content": $excerpt = apply_filters( 'the_content', $entry->post_content); $title = $entry->post_title; break;
Let us know, if this helped you.
If you need more information for the other elements, let us know.
Best regards,
Günter