[-] FO : fixed bug #PSCFV-5617 - fixed bug #PSCFV-5616 - mobile theme issues
This commit is contained in:
@@ -318,7 +318,6 @@ class OrderOpcControllerCore extends ParentOrderController
|
||||
|
||||
$this->context->smarty->assign(array(
|
||||
'free_shipping' => $free_shipping,
|
||||
'isLogged' => $this->isLogged,
|
||||
'isGuest' => isset($this->context->cookie->is_guest) ? $this->context->cookie->is_guest : 0,
|
||||
'countries' => $countries,
|
||||
'sl_country' => isset($selectedCountry) ? $selectedCountry : 0,
|
||||
|
||||
@@ -60,8 +60,7 @@ class ParentOrderControllerCore extends FrontController
|
||||
if (Configuration::get('PS_ORDER_PROCESS_TYPE') == 0 && Dispatcher::getInstance()->getController() != 'order')
|
||||
Tools::redirect('index.php?controller=order');
|
||||
|
||||
//if getMobileDevice is on a mobile or a tablet we don't redirect to OPC
|
||||
if (Configuration::get('PS_ORDER_PROCESS_TYPE') == 1 && Dispatcher::getInstance()->getController() != 'orderopc' && !$this->context->getMobileDevice())
|
||||
if (Configuration::get('PS_ORDER_PROCESS_TYPE') == 1 && Dispatcher::getInstance()->getController() != 'orderopc')
|
||||
{
|
||||
if (isset($_GET['step']) && $_GET['step'] == 3)
|
||||
Tools::redirect('index.php?controller=order-opc&isPaymentStep=true');
|
||||
@@ -326,6 +325,7 @@ class ParentOrderControllerCore extends FrontController
|
||||
$this->context->smarty->assign($summary);
|
||||
$this->context->smarty->assign(array(
|
||||
'token_cart' => Tools::getToken(false),
|
||||
'isLogged' => $this->isLogged,
|
||||
'isVirtualCart' => $this->context->cart->isVirtualCart(),
|
||||
'productNumber' => $this->context->cart->nbProducts(),
|
||||
'voucherAllowed' => CartRule::isFeatureActive(),
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<input type="hidden" id="cart_product_address_delivery_id_{$product.id_product}" value="{$product.id_address_delivery}"/>
|
||||
|
||||
<div class="fl width-20">
|
||||
<img src="{$img_prod_dir}{$product.id_image}-small_default.jpg" class="img_product_cart" />
|
||||
<img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'small_default')}" class="img_product_cart" />
|
||||
</div>
|
||||
<div class="fl width-70 padding-left-5px">
|
||||
<h3>{$product.name}</h3>
|
||||
|
||||
Reference in New Issue
Block a user