First, you should read over the Template Override File developer doc.:
This is important so the changes to the template file will not be overwritten when template updates are released.
The first change, make the image a permalink to the Entry detail/profile page.
Open the card.php
file found in the following folder:
../wp-content/plugins/connections-circled
Change the following from:
<?php $entry->getImage(
array(
'image' => $atts['image'],
'height' => $atts['image_width'],
'width' => $atts['image_width'],
'fallback' => array(
'type' => $atts['image_fallback'],
'string' => $atts['str_image'],
),
)
); ?>
to this:
<?php $entry->getImage(
array(
'image' => $atts['image'],
'height' => $atts['image_width'],
'width' => $atts['image_width'],
'fallback' => array(
'type' => $atts['image_fallback'],
'string' => $atts['str_image'],
),
'permalink' => cnSettingsAPI::get( 'connections', 'connections_link', 'name' ),
)
); ?>
For the second change, add the following line of code where you wish the state to be displayed.
$entry->getAddressBlock( array( 'format' => '%state%' );
I hope this helps! Please let me know.