Jump to content

[ÇÖZÜLDÜ] Ülkeye göre sepet limiti


Recommended Posts

Merhabalar arkadaşlar sitemiz üzerinden yurtdışına gönderim yapıyoruz. Fakat, mağlum yurtdışına gönderimler biraz daha maliyetli bu yüzden Avrupa Ülkelerine gönderim yaparken sipariş aşamasında sepet toplamı için minimum bir limit belirtmek istiyoruz. Bu limiti bölgelere göre farklı yapabilir miyiz?

Edited by Can Memiş (see edit history)
Link to comment
Share on other sites

Birde şunu deneyebilirsin biraz macera olarak çünkü daha önceden denmedim bakalım olur

 

ftp den controllers/front/OrderController.php yi aç

 

en allta şu kodu bul

public function setMedia()
{

....

}

hemen ilk süslü parantez sonrasına

/*** KODUN BAŞLANGICI ***/    
        $adress = Tools::getValue('id_address_delivery');
        if (Validate::isInt($adress))
        {
            $getAdress = Db::getInstance()->getRow('SELECT * FROM '._DB_PREFIX_.'address WHERE id_address = "'.$adress.'"');
            $id_country = $getAdress['id_country'];
        }
        else
            $id_country = 211;
        
        global $smarty;
        $smarty->assign(array(
            'id_country' => $id_country,
        ));
    /*** KODUN SONU ***/

Bu kodu ekle

 

Sonra temanın "order-carrier.tpl" sine bir if kodu ekle

 

deki

{if $id_country != 211 AND {displayPrice price=$cart->getordertotal(false)} >= '200,00 TL'}

 

diye if ekle ve sipariş al

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...