@ Alyssa
In a plugin and play fashion, sorry no. However, if you can make some very basic PHP edits you could. Here’s how:
Open the the profile.php file found here:
../wp-content/plugins/connections/templates/profile/
Copy the code from lines 52 to 67 which should be:
<div class="cn-entry" style="-moz-border-radius:4px; background-color:#FFFFFF; border:1px solid #E3E3E3; color: #000000; margin:8px 0px; padding:6px; position: relative;">
<span style="float: left; margin-right: 10px;"><?php $entry->getImage( array( 'preset' => 'profile' ) ); ?></span>
<div style="margin-left: 10px;">
<span style="font-size:larger;font-variant: small-caps"><strong><?php $entry->getNameBlock(); ?></strong></span>
<div style="margin-bottom: 20px;">
<?php $entry->getTitleBlock() ?>
<?php $entry->getOrgUnitBlock(); ?>
</div>
<?php echo $entry->getBioBlock(); ?>
</div>
<div style="clear:both"></div>
</div>
From here I’m going to assume doing this to the cMap template but the instructions would be pretty much the same for the others as well. I think just the file path would differ.
Open the card.php file found here:
../wp-content/plugins/cmap/
Replace the entire contents of this file with the code from the Profile template.
Save and upload overwriting the original.
The result should be a template that appears like the Profile template but includes the category drop down, search and pagination. You’ll lose much of other cMap specific features but it should achieve your goal.
I hope that helps.
