V
V
Vlad2020-12-24 02:25:10
WordPress
Vlad, 2020-12-24 02:25:10

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) 5fe3cf76675a9774856133.pngMultiplied by (minimum order quantity field) 5fe3cf883929e077692660.pngwhich 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 question

Ask a Question

731 491 924 answers to any question