Virtuemart3.0 payment method issue for multiple language - virtuemart

I have a issue related to virtuemart
my site is in multiple language so payment method is displaying ony for english langusge in cart.
for other language payment method option is not displaying on cart
I am getting a error message("Sorry, none of the payment methods suits the characteristics of your order. You're welcome")
please help me
virtuemart version is 3.0

I have fixed it myself.
Actually, I was missing some settings in virtue mart admin section.
We have to setup payment method and shipping method for each language separately.

Related

Change position of Billing address in Magento 2

I have to changed default billing address position which is coming under the payment information i need it after shipping method select , no after click on payment method.
I have tried lot of google and magneto docs but no luck with that.
Can any one please help me ?
Thanks.
Please note that it might not be technically possible (or at least not very easy) to have a customer enter it's address after the payment / shipping methods. This is because Magento loads it's payment- and shipping methods according to the address the customer has chosen.
Also, manipulating the (default) checkout page in Magento 2 is a very comprehensive task on itself and requires deep knowledge on how the theming and layout of Magento 2 works.

Different checkout pages based on product category in Magento

I am new to Magento .So please forgive me if I am asking something silly.
I am working on a Magento shop where I have a requirement that when I select some product in certain category say X, then I am redirected to one page checkout where I have default shipping method and do not want any payment method. i.e. Skip shipping and payment method step in chekout.
Whereas if I click some other categories then I get redirected to onepage checkout with shipping and payment option.
So basically what I need in form of code is -
if(category==X)
then Checkout without Shipping and payment method
else
Checkout with Shipping and Payment options.
As far as I have explored the magento structure , it is far too complex then other CMS. I am not able to even find files where i have to make changes in code. Anybody out there who can guide me for right approach toward the solution? Or is there any extension which fulfills such requirement?
Thanks in advance.
First, create the new payment method for the category (and shipping method if you need that too).
http://www.magentocommerce.com/wiki/5_-_modules_and_development/payment/create-payment-method-module
http://www.magentocommerce.com/wiki/5_-_modules_and_development/shipping/create-shipping-method-module
Then I would probably extend the controller, though you probably could also use an observer.
Extend magento core controller (Checkout/OnepageController)
Keep in mind that the customer may have products from another category in their cart, and what to do in that case.

Magento use simple product price instead of Super Attribute price

I have a Configurable Product with a Super Attribute and a number of Simple Products (with different prices). In Admin when i select the Configurable Product >> Associated Products I can see the simple products. On the front-end when I try to add one of these simple products to the basket instead of seeing the price of that simple product i am seeing the price of the Configurable Product + the values in the Super Attribute Configuration for the selected product. Does anyone know how to change this so that the simple product price is used?
I struggled with exact same issue a couple years ago and Magento EE support could not provide much help. Client has an ERP system that only contains simple products. So configurable products are only for creating shopping experience in Magento. This makes ignoring simple product pricing for a base+offset configurable pricing model in Magento a problem. Never able to understand the logic to ignoring available pricing data for an additional meta pricing model!?
Magento EE support unofficially pointed me to a third party extension. http://www.magentocommerce.com/magento-connect/simple-configurable-products.html This extension is no longer supported so core upgrades have required work to keep things working. Looks like there are other extensions addressing this issue that may offer support.
I wanted to believe someone smarter than I could explain a better approach to solving this problem.

magento - Creating a custom module and enabling payment for nominal items

I have created a custom payment module and a custom gateway successfully using the following tutorials:
http://www.magentocommerce.com/wiki/5_-_modules_and_development/payment/create-payment-method-module
http://colourgray.wordpress.com/2009/11/11/magento-create-a-custom-payment-method/
However, my problem now is that my module would not show up when I checkout an item with recurring profiles.. how do I enable my payment module for nominal items such as these? also what are the requirements if any?
Currently only Paypal Express can be seen (if enabled), what are the conditions on why the Paypal Express payment module can be seen on checkouts with nominal items?
Your payment method class must implement Mage_Payment_Model_Recurring_Profile_MethodInterface interface. Look at class Mage_Paypal_Model_Express. When you implement it - it becomes available in shopping cart when you checkout cart with nominal items only (as Paypal Express works now, see link from Oğuz Çelikdemir).

How to block free shipping method in frontend only in magento

I am in a tensed situation. I am behind this for more than 1 day. Is there anyway to block showing free shipping method in checkout page, but showing it on admin panel page.
For eg: i purchased a product paying shipping charges for shipping method. But it is not delivered , In that case, through admin Panel, admin may able to reorder the same quote, free of cost and shipping charges, so free shipping method should show in admin panel. But When I enable that, this is shown on frontend also, so how can I block free shipping in frontend(customer checkout), but keeping it enable in admin panel.
I am sorry for poor English. I think, the example that i provided you make the question clear.
Thanks in advance.
Sure it is , just edit the shipping methods template and make a if condition by shipping method code or extend the shipping method and set the isActive method to distinct front and backend

Resources