Search the Community
Showing results for tags 'specificPrice'.
-
-
- specificprice
- import csv
-
(and 2 more)
Tagged with:
-
Bonjour à tous, Dans Prestashop 1.7.8 (mais surement aussi les autres versions), les règles de panier (SpecificPriceRules) permettent d'ajouter une condition basée sur la catégorie. Problème: cela ne fonctionne que sur les produits dont cette catégorie est la catégorie principale. Exemple: Prenons une catégorie mère Voitures, et une sous catégorie Citadines, mon produit est lié aux deux catégories mais sa catégorie principale est Voitures: si je crée une règle de panier applicable à la catégorie Citadines, mon produit est affiché au plein tarif car la règle ne s'applique pas... si je change la condition de la règle et mets Voitures comme catégorie, alors le produit est bien affiché avec la réduction. Comment éviter ce problème? Il y a une astuce ou une config particulière à faire? merci
-
Hi, we need help showing sale prices for products that have a set of specific prices for single combinations. Products have price set for each combination (color + size). When we set a percentage reduction on all combinations, even with currency or country priority, the sale price does not show. Combination price has priority on specific prices and on catalog price rules. Is there a workaround on it that avoid change to several combination prices? Many thanks for your precious help.
- 3 replies
-
- specific price
- specificprice
-
(and 3 more)
Tagged with:
-
Hi I have products with declination depending on size and specific decreasing price for each. Decreasing price table display is good for the first declination but not update like the image for the second. Any idea ? I have a decreasing price by 2 (-1€) for the first. And a decreasing price by 2 (-1.81€) and by 126 (-4.9€) for the second.
-
Salut tout le monde, j'ai essayé de créer un prix spécifique applicable sur toutes les déclinaisons d'un produit mais seule le prix du déclinaison principale est modifiée correctement, les autres déclinaisons ne prennent pas en compte le prix spécifique que j'ai mise. NB: Je travail sur la version 1.6.14. Quelqu'un a t-il une idée pour résoudre ce problème, et merci d'avance ?
-
- specificprice
- specific
-
(and 4 more)
Tagged with:
-
The problem is that despite the addition of a specific price and a rule for a given product at the time of adding a product to the Cart, the changed price in the Cart appears only after several dozen seconds. I overwritten CartController.php in the following way: =============== class CartController extends CartControllerCore { public function __construct() { $this->context = Context::getContext(); $this->bootstrap = true; parent::__construct(); } public static function slugify($text) { $text = preg_replace('~[^\pL\d]+~u', '-', $text); // replace non letter or digits by - $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); // transliterate $text = preg_replace('~[^-\w]+~', '', $text); // remove unwanted characters $text = trim($text, '-'); // trim $text = preg_replace('~-+~', '-', $text); // remove duplicate - $text = strtolower($text); // lowercase if (empty($text)) { return 'n-a'; } return $text; } public function initContent() { // parent::initContent(); if ( isset($_COOKIE['price']) && isset($_COOKIE['quantity']) && $_COOKIE['store_name']) { if ( $this->id_product && $this->context->cart->id && ( Tools::getIsset('add') || Tools::getIsset('update') ) ) { //SpecificPriceRule() // $cart->updateQty(1, $product_id, $product->getDefaultAttribute($product->id)); $specific_price_rule = new SpecificPriceRule(); $specific_price_rule->name = self::slugify($_COOKIE['store_name'])."-" .$this->id_product."-".$_COOKIE['price']; $specific_price_rule->id_shop = $this->context->shop->id; $specific_price_rule->id_currency = $this->context->currency->id; $specific_price_rule->id_country = $this->context->country->id; $specific_price_rule->id_group = $this->context->customer->id_default_group; $specific_price_rule->from_quantity = 1; $specific_price_rule->price = $_COOKIE['price']; $specific_price_rule->reduction_tax = 1; $specific_price_rule->reduction = 0; $specific_price_rule->reduction_type = 'amount'; $specific_price_rule->from = date("Y-m-d H:i:s"); $specific_price_rule->to = "0000-00-00 00:00:00"; //SpecificPrice() $specific_price = new SpecificPrice(); $specific_price->id_product = (int)$this->id_product; // choosen product id $specific_price->id_product_attribute = 0;//$product->getDefaultAttribute($product->id); $specific_price->id_cart = (int)$this->context->cart->id; $specific_price->id_shop = $this->context->shop->id;; $specific_price->id_currency = $this->context->currency->id; $specific_price->id_country = $this->context->country->id;; $specific_price->id_group = $this->context->customer->id_default_group; $specific_price->id_customer = $this->context->customer->id ? $this->context->customer->id : NULL; $specific_price->from_quantity = 1; $specific_price->price = $_COOKIE['price']; $specific_price->reduction_type = 'amount'; $specific_price->reduction_tax = 1; $specific_price->reduction = 0; $specific_price->from = date("Y-m-d H:i:s"); $futureDate = strtotime(date("Y-m-d H:i:s"))+(60*60); $specific_price->to = date("Y-m-d H:i:s", $futureDate); $specific_price->id_specific_price_rule = $id_specific_price_rule; } } parent::initContent(); } } =============== The appropriate entries are made in the tables: ps_specific_price ps_specific_price_rule After pressing the 'Add to Cart' button, the original price still appears and only after a few or several dozen seconds, when I refresh the Cart, the correct price appears. What could be the reason? Maybe there is a cache somewhere, but I can not find it? Maybe you have an idea how to solve it?
-
- 1
-
- cartcontroller
- specificpricerule
-
(and 1 more)
Tagged with:
-
Bonjour, Sur mon thème pour prestashop 1.5.3, je souhaite afficher dans le fiche produit (product.tpl) la remise en pourcentage (%) faite sur mon produit depuis le back office "prix spécifiques" J'ai placé ceci dans product.tpl : $product->specificPrice.reduction mais cela me donne 0% Auriez vous un bout de code pour m'aider de toute urgence Merci JMA
-
Bonjour, Sur mon prestashop version 1.5.3 La réduction en pourcentage (et même sur le montant) ne s'affiche plus dans ma fiche produit ? Je ne comprends pas pourquoi. Pourtant mon produit a bien un prix spécifique en pourcentage de renseigné. Mais rien. J'ai aussi regardé dans les CSS mais rien .... Que se passe t'il ? donc ce code de ma page "product.tpl" ne m'affiche rien ... <p id="reduction_percent" {if !$product->specificPrice OR $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}><span id="reduction_percent_display">{if $product->specificPrice AND $product->specificPrice.reduction_type == 'percentage'}-{$product->specificPrice.reduction*100}%{/if}</span></p> Je ne comprends pas Pourriez vous m'aider s'il vous plait. MERCI par avance JM
- 7 replies
-
- reduction_percent
- specificprice
-
(and 1 more)
Tagged with:
-
Bonjour, Sur mon prestashop version 1.5.3 La réduction en pourcentage (et même sur le montant) ne s'affiche plus dans ma fiche produit ? Je ne comprends pas pourquoi. Pourtant mon produit a bien un prix spécifique en pourcentage de renseigné. Mais rien. J'ai aussi regardé dans les CSS mais rien .... Que se passe t'il ? donc ce code de ma page "product.tpl" ne m'affiche rien ... <p id="reduction_percent" {if !$product->specificPrice OR $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}><span id="reduction_percent_display">{if $product->specificPrice AND $product->specificPrice.reduction_type == 'percentage'}-{$product->specificPrice.reduction*100}%{/if}</span></p> Je ne comprends pas Pourriez vous m'aider s'il vous plait. MERCI par avance JM
-
- reduction_percent
- specificprice
-
(and 1 more)
Tagged with:
-
Bonjour, je souhaiterais que les prix specifiques des produits(promotions) apparaissent non seulement dans la page product.tpl mais aussi dans product-list.tpl J'ai vu dans product.tpl que c'est la variable smarty $product->specificPrice qui est utilisée pour cela mais j'ai un peu de mal à l'adapter à product-list.tpl Un coup de main ? Merci Mica
- 6 replies
-
- specificPrice
- promotions
-
(and 2 more)
Tagged with: