Home / How to Apply Coupon Coupon Based On Cart Item Meta
Duplicate Snippet

Embed Snippet on Your Site

How to Apply Coupon Coupon Based On Cart Item Meta

If you are unsure of the meta key and meta value, you may add the following to your child theme’s functions.php or the WPCode plugin.

Code Preview
php
<?php
// define the woocommerce_after_cart callback 
function action_woocommerce_after_cart() { 
    error_log(print_r(WC()->cart->get_cart_contents(), true));
}; 
         
// add the action 
add_action( 'woocommerce_after_cart', 'action_woocommerce_after_cart', 10, 1 );

Comments

Add a Comment