Answer the question
In order to leave comments, you need to log in
Shortcode for WORDPRESS|Woocommerce ( (Result of multiplication)=(product price) * (minimum order quantity field)?
You need to create a shortcode that will display:
Amount = (base price of the product) Multiplied by (minimum order quantity field)
which appears using the WooCommerce Advanced Quantity plugin.
code example
function Price_per_consignment( $atts ) {
$atts = shortcode_atts( array(
'var' => 0, (заменить на поле базовая цена)
'var2' => 0 (заменить значение на поле минимальное количество)
), $atts, 'multiplication_three' );
$res = $atts['var'] * $atts['var2'];
return 'Цена за партию поставки '.$res.'<br />';
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question