Description
Size:1200x900mm
// Add hidden gclid field to checkout add_action('woocommerce_after_order_notes', function($checkout) { echo ''; });// Populate the field from the cookie via JS add_action('wp_footer', function() { if (is_checkout()) { ?> add_order_note('GCLID captured: ' . sanitize_text_field($_POST['gclid'])); } });