12/12/2014 at 10:42 am
#312741
Keymaster
@ Deanna
The Circled template does not show the logo since it is designed to highlight individuals. The only way to add it is to create a custom template override file and add the code to show the logo. Here’s the code that would add to the custom card-single.php file:
$entry->getImage( array(
'image' => 'logo',
'height' => 100,
'width' => 100,
'quality' => cnSettingsAPI::get( 'connections', 'image_logo', 'quality' ),
'zc' => array_search( cnSettingsAPI::get( 'connections', 'image_logo', 'ratio' ), $cropMode ),
'fallback' => array(
'type' => none,
)
)
);
Hope that helps!
