Reorder Payment Options?

luckylutz

New Member
YetiShare User
Aug 30, 2012
147
0
0
44
Schwitzerland
www.hoodload.com
How can I change the order of the paid options

Currently it's a bit of a jumble. :)

I try to order the Voucher button on the top and the payment gateways on the bottom. but this too i will reorder.

See Image

 

adam

Administrator
Staff member
Dec 5, 2009
2,046
108
63
It's not possible in the current version, the plugins are loaded as they're listed in the database. I've added a 'load_order' column for the next release. You can manually add it by doing this:

Execute this on your database:

Code:
ALTER TABLE `plugin` ADD `load_order` INT( 3 ) NULL DEFAULT 999;
Within includes/class.pluginhelper.php, in the load loadPluginConfigurationFiles() around line 57. Replace the current sql query with this:

Code:
$plugins = $db->getRows('SELECT * FROM plugin WHERE is_installed = 1 ORDER BY load_order ASC');
So if you now go into your database and update the load_order column to a low number on your voucher plugin, it'll load the plugin first.

You'll need to logout and back into the site to see any changes as it stores the plugin data in your session.