06/20/2014 at 10:57 am
#294589
Keymaster
@ Gordon
In short adding fields is non-trivial, so #1 and #3 really is not possible. repurposing the fields as you have done is the only option.
re: #2
If you edit the template, yes. This is the line of code you need to add.
$entry->vcard();
Rather than modifying the card.php
file directly, I recommend duplicating it and then adding the new line of code. See this QuickTip for more details.
re: 3a
Sure, you’d have to use a bit of CSS to change that span from a block
to an inline-block
. This bit of CSS should do it:
#cn-slim-plus span.adr span.country-name { display: inline-block !important; }
Here’s a QuickTip that explains how to add custom CSS for a template.
Hope that helps some!