Admin - Configuration - My Store - Store Country - Catalog
From Zen Cart(tm) Wiki
Menu: Admin - Configuration - My Store - Store Country - Catalog
Version: 1.3.5
/path/to/your/shop/includes/functions/functions_taxes.php
| Line #22 : $country_id = STORE_COUNTRY; |
/path/to/your/shop/includes/modules/order_total/ot_loworderfee.php
| Line #40 : if ($order->delivery['country_id'] == STORE_COUNTRY) $pass = true; break;
Line #42 : if ($order->delivery['country_id'] != STORE_COUNTRY) $pass = true; break; |
/path/to/your/shop/includes/modules/order_total/ot_shipping.php
| Line #40 : if ($order->delivery['country_id'] == STORE_COUNTRY) $pass = true; break;
Line #42 : if ($order->delivery['country_id'] != STORE_COUNTRY) $pass = true; break; |
/path/to/your/shop/includes/modules/pages/advanced_search_result/header_php.php
| Line #225 : $_SESSION['customer_country_id'] = STORE_COUNTRY; |
/path/to/your/shop/includes/modules/pages/checkout_shipping/header_php.php
| Line #92 : if ($order->delivery['country_id'] == STORE_COUNTRY) {
Line #97 : if ($order->delivery['country_id'] != STORE_COUNTRY) { |
/path/to/your/shop/includes/modules/shipping/usps.php
| Line #416 : if ($transit && is_array($transreq) && ($order->delivery['country']['id'] == STORE_COUNTRY)) { |
/path/to/your/shop/includes/modules/shipping_estimator.php
| Line #107 : $_SESSION['cart_country_id'] = STORE_COUNTRY;
Line #108 : $_SESSION['country_info'] = zen_get_countries(STORE_COUNTRY,true);
|
