#======================================================== # ShoppingMall Software Installation Instructions #======================================================== # Setting up a percentage fee based off item selling price # This one does not charge for each item like the closing # percentage fee does #======================================================== The posting percentage fee are setup in the post_percents.bill file in the accounting dir. In this file you will see the below example you can have as many lines as needed or just one line: 0.020:::0.00:::150.99 0.018:::151.00:::250.99 0.015:::251.00:::500.99 0.013:::501.00:::99999999.99 percentage from $ to $ 0.020 :::0.00 :::150.00 Then in the config.pl file in your shoppingmall dir you need to find this line below and turn it 'on' ############################# # shopping mall item start percentage or presetrates fees # off or on $config{'postpercentage'} = 'off'; =================================================================== You have to create all the html for any closing percentage fees the script can not do this for you, in the fees.pl file and in the shoppingmall.pl file under the new and new2 subs find these lines:
Insertion Fees
Now just past some thing like this under the above found lines:
Commissions
Posting percentage
Posting percentage commissions based off item(s) selling price. 0.00 to 150.99 = 2.0%
151.00 to 250.99 = 1.80%
251.00 to 500.99 = 1.5%
501.00 to 999999.99 = 1.3%