08/13/2014 at 12:06 pm
#300785
Keymaster
@ Cédric
You have two options. One is to add show_link='true' to the shortcode. If you use this method, the links will show on both the ‘card.phpand the 'card-single.php. If you only wish them to be displayed on the card-single.php change this line:
if ( $atts['show_links'] ) $entry->getLinkBlock( array( 'format' => $atts['link_format'], 'type' => $atts['link_types'] ) );
to this:
$entry->getLinkBlock( array( 'format' => $atts['link_format'], 'type' => $atts['link_types'] ) );
That’ll do the trick.
