10/16/2013 at 1:08 pm
#271603
Keymaster
@ Ruth
If you’re not much of a techie, this is not an easy change to make…
The file you need to edit is card.php and can be found here:
../wp-content/plugins/cmap/
Look for this line of code:
echo '<div class="cn-bio" id="bio-block-' , $entry->getRuid() , '" style="display: none;">';
Change it to this:
echo '<div class="cn-bio" id="bio-block-' , $entry->getRuid() , '" style="display: block;">';
Look for this block of code and delete it:
if ( $atts['enable_bio'] && $entry->getBio() != '' ) {
printf( '<a class="cn-bio-anchor toggle-div" id="bio-anchor-%1$s" href="#" data-uuid="%1$s" data-div-id="bio-block-%1$s" data-str-show="%2$s" data-str-hide="%3$s">%2$s</a>',
$entry->getRuid(),
$atts['str_bio_show'],
$atts['str_bio_hide']
);
}
if ( ( $atts['enable_note'] && $entry->getNotes() != '' ) && ( $atts['enable_bio'] && $entry->getBio() != '' ) ) {
echo ' | ';
}
That should do it.
Now, save and upload overwriting the original. Of course you should make a backup incase you make an error.
