11/30/2016 at 11:08 am
#401825
Keymaster
@ David
The only way to achieve this then would be to develop a custom template override file.
In most templates you will find a line of code which will be similar to this:
$entry->getAddressBlock( array( 'format' => $atts['address_format'], 'type' => $atts['address_types'] ) );
Copy paste this line for each phone type you want to display in the order you which them to be displayed. For example the code should be similar to this:
$entry->getAddressBlock( array( 'format' => $atts['address_format'] , 'type' => 'workphone' ) );
$entry->getAddressBlock( array( 'format' => $atts['address_format'] , 'type' => 'cellphone' ) );
Hope this helps!
