Plugin di nostra creazione che possono essere utili.

WooCommerce Dynamic Shipping

Aggiorna le spese di spedizione al variare della nazione selezionata.

Notifica Aggiunta al carrello

Ricevi un avviso email ogniqualvolta un utente aggiunge un prodotto al carrello.

add_action('woocommerce_add_to_cart', 'send_email_on_add_to_cart');

function send_email_on_add_to_cart($cart_item_key) {
    $cart = WC()->cart->get_cart();
    $cart_item = $cart[$cart_item_key];

    $product_name = $cart_item['data']->get_name();
    $product_price = $cart_item['data']->get_price();
    $quantity = $cart_item['quantity'];

    // Email details
    $to = 'info@sitiware.it';
    $subject = 'New item added to cart';
    $headers = array('Content-Type: text/html; charset=UTF-8');
    $body = '<p>Product Name: ' . $product_name . '</p>';
    $body .= '<p>Product Price: ' . $product_price . '</p>';
    $body .= '<p>Quantity: ' . $quantity . '</p>';

    wp_mail($to, $subject, $body, $headers);
}