Jump to content

Virtual Product problem


Recommended Posts

hi

I have a problem with the virtual product

when I want to pay a product, displays the message "No installed any payment method"

 

I installed the payment module

cash on delivery and bank wire

Payments to carriers

 

 

I have only one currency activated

and one country

 

TKS

Edited by Ginno (see edit history)
Link to comment
Share on other sites

It's probably not a solution, but how are you proposing physically to accept cash on delivery for an online product? Surely the whole point of an online product is that the purchaser can buy it from his computer desk without having to visit anyone to pay cash?

 

I would suggest installing the Paypal module. I have virtual products and Paypal works fine for me.

Link to comment
Share on other sites

  • 8 months later...

if you have any virtual products in cart the CoD is not available. For making it available you have to comment some rows in /modules/cashondelivery/cashondelivery.php, specifically:

foreach ($params['cart']->getProducts() AS $product)
		{
			$pd = ProductDownload::getIdFromIdProduct((int)($product['id_product']));
			if ($pd AND Validate::isUnsignedInt($pd))
				return false;
		}

Hope this helps other people.

Link to comment
Share on other sites

×
×
  • Create New...