Reputation: 650
I have a problem with a Magento shop.
The default payment option has a fee of 49 SEK. But there is several other payment options without a fee, this one just needs to on top.
The problem is, when i come to the store and add something to the cart it automatically adds those 49 SEK to the totals summary, so if i add products for 200 SEK it says 249 SEK in the cart in the header and as totals in /checkout/cart/.
First i thought this was something specific with this payment module, but i noticed if you choose a shipping method in the cart and returns to the shop. It adds this fee as well.
Is there a way to only show the product totals before checkout?
We are using onepage checkout and a stock theme, but i have tried deactivating both the theme and OPC with no luck.
I guess if there was a way to not set default payment method it would do it, but opposite of shipping methods, there is no way to select blank for default payment method in the settings.
If i change to a payment method without a fee, it works as needed but since the store has a special deal with this payment company, they need to be favored in the checkout :/
Upvotes: 0
Views: 532
Reputation: 2790
Mage::getSingleton('checkout/session')->getQuote() to get cart on session. And getAllItems() to get the itens from cart. collectRates() to get the rates for the cart.
Gl On that
Upvotes: 1