Problem:
The issue here is that the customer wants to display his timestamp in a human readable format.
Solution:
You can create a conversion shortcode like this.
// Add Shortcode function convert_date( $atts ) { // Attributes $atts = shortcode_atts( array( 'timestamp' => '', ), $atts ); $date = Date('F j, Y, g:i a',$atts['timestamp']); return $date; } add_shortcode( 'convert_date', 'convert_date' );
Then pass the other shortcode into it link this
[convert_date timestamp="[wpv-post-field name='we_startdate']"]
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
- | 9:00 – 12:00 | 9:00 – 12:00 | 9:00 – 12:00 | 9:00 – 12:00 | 9:00 – 12:00 | - |
- | 13:00 – 18:00 | 13:00 – 18:00 | 13:00 – 18:00 | 14:00 – 18:00 | 13:00 – 18:00 | - |
Supporter timezone: America/Jamaica (GMT-05:00)
This topic contains 3 replies, has 3 voices.
Last updated by 6 years, 11 months ago.
Assisted by: Shane.