How to Change expiration date in virtuemart
Modified /administrator/components/com_virtuemart/classes/ps_html.php
<?php
...
$end = $end ? $end : $start + 7;
...
?>
to
<?php
...
$end = $end ? $end : $start + 10;
...
?>
阅读其他美文
Modified /administrator/components/com_virtuemart/classes/ps_html.php
<?php
...
$end = $end ? $end : $start + 7;
...
?>
to
<?php
...
$end = $end ? $end : $start + 10;
...
?>