Hi mixedgroup,
Kindly open wp-content\themes\velvet\includes\loop-portfolio.php and find this code (line 44-64):
if(!isset($avia_config['remove_portfolio_text']))
{
echo "<h1 class='post-title'>";
echo "<a href='".get_permalink()."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".get_the_title()."'>".get_the_title();
echo "</a></h1>";
echo '<div class="entry-content">';
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>";
}
replace it with:
if(!isset($avia_config['remove_portfolio_text']))
{
echo "<h1 class='post-title'>";
echo get_the_title();
echo "</h1>";
echo '<div class="entry-content">';
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 "</div>";
}
Hope this helps.
Regards,
Ismael