// Customize the order review table function moonrock_custom_order_review() { wc_get_template('checkout/review-order.php', array( 'checkout' => WC()->checkout(), )); } add_action('woocommerce_checkout_order_review', 'moonrock_custom_order_review'); // Handle gift card functionality function moonrock_process_gift_card() { if (isset($_POST['gift_card_code']) && isset($_POST['gift_card_pin'])) { // Process gift card logic here // Add discount to cart $discount = 50; // Example discount amount WC()->cart->add_fee(__('Gift Card Discount', 'woocommerce'), -$discount); } } add_action('woocommerce_before_cart', 'moonrock_process_gift_card'); Moonrocks How to Use Archives | Moon Rock Online Shop
This site uses cookies to offer you a better browsing experience. By browsing this website, you agree to our use of cookies.