Knowledge Base

Display prices backwards on the order forms?

To display the prices backwards on the order forms, you need to edit the main model file.

Open this file:
/app/models/packages.php

Find:
order(array('period' => "ASC", 'term' => "ASC"))->fetchAll();

Replace with:
order(array('period' => "DESC", 'term' => "DESC"))->fetchAll();

Please rate this article to help us improve our Knowledge Base.

0 0