07/13/2018 at 12:03 pm
#467451
Participant
Yep! That fixed it. Now I can see the field as an option when managing or adding new entries.
I’m still not able to see the changes on the card.php file, though. I’ve followed the steps in how to create a custom template override file and have it in
../wp-content/theme/parent-theme/connections_templates/circled/card.php
I’ve pasted the following code into the card.php file:
<?php
$text = $entry->getMeta(
array(
‘key’ => ‘city’,
‘single’ => TRUE
)
);
if ( ! empty( $text ) ) echo '' . esc_html( $text ) . '';
?>
