Category: Action

  • WooCommerce Checkout Fields and Uploads

    WooCommerce Checkout Fields and Uploads

    If you’re running a WooCommerce payment gateway for your project but you find that you need to add some additional fields to the checkout to keep your client happy, or indeed to placate some law in whichever random country takes their fancy to change the rules of engagement. Of course you could add one of…

  • woocommerce_coupon_data_panels

    This is the contents of the options panel and where you will list all of your fields to display and how they will be displayed. [php] function webdav_newcoupon_data_panels() { global $woocommerce, $post; echo ‘<div id="webdav_newcoupon_data" class="panel woocommerce_options_panel">’; // Your coupon type options will go in here echo ‘</div>’; } add_action(‘woocommerce_coupon_data_panels’, ‘webdav_newcoupon_data_panels’); [/php]