08/23/2017 at 10:53 am
#432966
Keymaster
@ Linda
Great! From the screenshot it looks like you are using the Default Entry Card template, assuming that, here the instructions…
Open the card.php
file found in this folder:
../wp-content/plugins/connections/template/card/
Look for this:
cnTemplatePart::updated(
array(
'timestamp' => $entry->getUnixTimeStamp(),
'style' => array(
'font-size' => '10px',
'font-variant' => 'small-caps',
'margin-right' => '10px',
)
)
);
Change it to this:
echo $entry->getFormattedTimeStamp( 'm/d/Y' );
You can change m/d/Y
to any valid PHP data format.
If you decide to do this, I recommend following the instructions on how to implement a custom template override so the change is not lost when Connections is updated.
Hope this helps!