08/18/2013 at 8:50 pm
#267482
Keymaster
@ daryl
I think this should do it:
Open the card.php
file found here:
../wp-content/plugins/cmap/
Go to line 147 which should be this:
echo '<div class="cn-notes" id="note-block-' , $entry->getRuid() , '" style="display: none;">';
Change it to this:
echo '<div class="cn-notes" id="note-block-' , $entry->getRuid() , '" style="display: block;">';
Now go to line 63 which should be this:
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>',
And change it to this:
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">%3$s</a>',
Save and upload overwriting the original.
Of course, make a backup first.