Osclass Support Forums

Osclass plugin support => User Rating Plugin => Topic started by: apibio on January 11, 2018, 04:24:18 PM

Title: Modify date and time model
Post by: apibio on January 11, 2018, 04:24:18 PM
How to change the date format ...... to start with hour, minute .....

Thanks
Title: Re: Modify date and time model
Post by: MB Themes on January 12, 2018, 02:39:54 PM
@apibio
In file:
oc-content/plugins/user_rating/user/rating.php

Replace:
Code: [Select]
<?php echo $r['d_datetime']; ?>
With i.e.:
Code: [Select]
<?php echo date('j. M'strtotime($r['d_datetime'])); ?>
Find more data formats on PHP documentation.