Jump to content

Carrier problem


Recommended Posts

i have installed new version and i am newbie of prestashop.

 

checked everything ad edited everything but while placing an order it always shows carrier issue.

 

image is attached so kindly please tell me the solution of this issue

 

 

Thanks,

post-454585-0-94634600-1357371569_thumb.jpg

Link to comment
Share on other sites

Hi,

thanks for your quick response. its working now. but now i am getting issue in payment methods. i installed cash on delivery option but during checkout it shows only pay by check and one another option. its not showing cash on delivery option.

Link to comment
Share on other sites

devilfunk, try to debug the hookPayment method of the cashondelivery module

 

public function hookPayment($params)
{
 if (!$this->active)
  return ;
 global $smarty;
 // Check if cart has product download
 foreach ($params['cart']->getProducts() AS $product)
 {
  $pd = ProductDownload::getIdFromIdProduct((int)($product['id_product']));
  if ($pd AND Validate::isUnsignedInt($pd))
return false;
 }
 $smarty->assign(array(
  'this_path' => $this->_path,
  'this_path_ssl' => Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/'.$this->name.'/'
 ));
 return $this->display(__FILE__, 'payment.tpl');
}

Link to comment
Share on other sites

×
×
  • Create New...