Thread Starter
Kayden
(@dboy5026)
Nevermind – figured it out 🙂
in include/plugin/page-item.php
I found this line:
if( find_xml_value($item_xml, “show-title”) == “Yes” ){
echo ‘<h2 class=”portfolio-thumbnail-title port-title-color gdl-title”>‘ . get_the_title() . ‘</h2>’;
}
and changed it to this:
if( find_xml_value($item_xml, “show-title”) == “Yes” ){
$website = get_post_meta( $post->ID, ‘post-option-website-url’, true);
echo ‘<h2 class=”portfolio-thumbnail-title port-title-color gdl-title”>‘ . get_the_title() . ‘</h2>’;
}
and it worked like a charm 🙂
-Kayden
Thread Starter
Kayden
(@dboy5026)
Also, I’m using the “Modernize” theme by Good Layers