07/28/2016 at 10:14 am
#384581
Keymaster
@ Eugene
This is possible but you will have to edit the templates PHP file in order to do this.
Open the card.php file found here:
../wp-content/plugins/connections-gridder/
Look for this chunk of code:
if ( $atts['excerpt_length'] ) {
echo cnString::excerpt(
apply_filters( 'cn_output_bio', $entry->getBio() ),
array(
'length' => $atts['excerpt_length'],
'more' => $atts['excerpt_more']
)
);
} else {
echo apply_filters( 'cn_output_bio', $entry->getBio() );
}
Change it to this:
if ( $atts['excerpt_length'] ) {
echo cnString::excerpt(
apply_filters( 'cn_output_notes', $entry->getNotes() ),
array(
'length' => $atts['excerpt_length'],
'more' => $atts['excerpt_more']
)
);
} else {
echo apply_filters( 'cn_output_notes', $entry->getNotes() );
}
Save the changes. I highly recommend following the advice in the custom template override files tutorial on where to put this altered file so your changes are not lost during an update.
Hope that helps!
