12/14/2015 at 9:40 am
#357927
Keymaster
@ Amy
re: Id like to not show a bio or an excerpt under the image.
The only way to make this edit is to edit the card.php file found here:
../wp-content/plugins/connections-circled/
Look for the following and delete it.:
<div class="cn-circled-excerpt">
<p>
<?php
if ( $atts['excerpt_length'] ) {
echo wp_trim_words( $entry->getBio(), $atts['excerpt_length'], $atts['excerpt_more'] );
} else {
echo $entry->getBio();
}
?>
</p>
</div>
re: And also if possible, to show 3 columns instead of 2. Thank you!
Well, yes, it is possible but would require you to make a lot of changes to the CSS possibly require changes to the templates PHP files to make it look right. That said, adding the following to the theme’s custom CSS area might be good enough.
#cn-circled .cn-list-row, #cn-circled .cn-list-row-alternate {
width: 32% !important;
}
Hope that helps!
