03/29/2015 at 5:53 pm
#329974
Keymaster
@ Dirk
re: Is it possible (using cMap) to have, on the detail view, the logo, the image and the siteshot.
Technically yes, but that requires you to edit the template’s php file.
You would have to edit the card-single.php
file found here:
../wp-content/plugins/connections-cmap/
You would paste this where you wanted SiteShot to be displayed:
$entry->getImage( array(
'image' => 'siteshot',
'height' => 200,
'width' => 300,
'fallback' => array(
'type' => 'none',
'string' => ''
)
)
);
If you take this route, then you should read this QuickTip so the change is update safe.
Hope that helps!