Adding php to events list (creating custom placeholder)
-
Hi everyone,
I would like to add number of days left to event end, which could be useful for many of you. I have this php:<?php $end=$EM_Event->end; $now= current_time('timestamp'); $seconds_to_expire=$end-$now; $days_to_expire=floor($seconds_to_expire/86400); if($days_to_expire<=-1) { echo "Finished"; } else if($days_to_expire==0) { echo "Ends tomorrow!"; } else if($days_to_expire==1) { echo "Only 1 full day left"; } else { echo "Event ends in ".$days_to_expire." days"; } ?>
but I am not able to create a custom placeholder from that (events-list.php does not allow to include php code). Can you please help?
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Adding php to events list (creating custom placeholder)’ is closed to new replies.