Answer the question
In order to leave comments, you need to log in
Price per item?
I need the price to be indicated depending on the quantity of goods I
wrote such a plugin
<?php
switch ($modx->event->name) {
case 'msOnChangeInCart':
//Доступные переменные - $product, $count, $options, $cart
$tmp = $cart->get();
$countAll = $tmp[$key]['count'];
$priceAll = $tmp[$key]['price'];
$tmp[$key]['price'] = $countAll * $priceAll;
$cart->set($tmp);
$modx->event->output($cart);
break;
}
Answer the question
In order to leave comments, you need to log in
where did $key come from? Make a vardump of your $tmp and see what and how it lies there, the business is ...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question