Comments Kartik Solanki started the conversationFebruary 9, 2019 at 10:55pmRight now as per the theme, the title for the listings in Portfolio Grid page is based on Page title. Is there any way we can change it to "Hero Caption Title"? 1,974Support repliedFebruary 11, 2019 at 7:30pmHello,yes, open /sections/portfolio_section_item.php and replace line 53<h2 class="item-title"><?php the_title(); ?></h2>with<h2 class="item-title"><?php echo $hero_caption_title; ?></h2>were $hero_caption_title you would have to initialize previously with $hero_caption_title = grenada_get_post_meta( GRENADA_THEME_OPTIONS, get_the_ID(), 'grenada-opt-portfolio-hero-caption-title' );Thank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy1 LikeKartik Solanki repliedFebruary 11, 2019 at 10:32pmPerfect! Thanks. Sign in to reply ...
Right now as per the theme, the title for the listings in Portfolio Grid page is based on Page title. Is there any way we can change it to "Hero Caption Title"?
Hello,
yes, open /sections/portfolio_section_item.php and replace line 53
<h2 class="item-title"><?php the_title(); ?></h2>
with
<h2 class="item-title"><?php echo $hero_caption_title; ?></h2>
were $hero_caption_title you would have to initialize previously with
$hero_caption_title = grenada_get_post_meta( GRENADA_THEME_OPTIONS, get_the_ID(), 'grenada-opt-portfolio-hero-caption-title' );
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Perfect! Thanks.