@ Dave
You can, but it will actually show on both the tile and the individual listing … you can enable it by using the show_addresses
shortcode option enabled by Tile Plus. Here’s an example of how to use it:
[connections show_addresses='true']
Another option, if you know PHP, the card-single.php
file can be edited to force the display.
Open the file and look for this line:
if ( $atts['show_addresses'] ) $entry->getAddressBlock( array( 'format' => $atts['addr_format'] , 'type' => $atts['address_types'] ) );
Change it this:
$entry->getAddressBlock( array( 'format' => $atts['addr_format'] , 'type' => $atts['address_types'] ) );
If you opt to go this route then I highly suggest reading this QuickTip an do the change as outlined so it is update safe.
Hope that helps, let me know.