Hi,
To showing date instead of total days in vShare, do the following.
Open vShare/include/functions_insert.php file and find
Code:
$addtime = $tmp[$info['field']];
replace with
Code:
$addtime = $tmp[$info['field']];
return date("Y/m/d", $addtime);
Then find
Code:
$mytime = $var['time'];
replace with
Code:
$mytime = $var['time'];
return date("Y/m/d", $mytime);
To know more date formats, check the following link.
PHP: date - Manual
If you can't get it fixed. Open a support ticket at BuyScripts Helpdesk
with your vShare admin and FTP login details.
Thanks,
Buyscripts Team.
Bookmarks