skip to Main Content

Woocommerce Order Details Not Loading Properly

I am using WooCommerce Print Invoices & Packing Lists Plugin. I want to add some custom field values in the order invoice. But the fields are not loading properly. add_action('wc_pip_after_body', 'dvsi_invoice_footer'); function dvsi_invoice_footer ($order_id) { $order = new WC_Order( $order_id…

VIEW QUESTION

Woocommerce variation dropdown option tag add some dataset

<select class="license_type" name="license_type" id="license_type"> <option value="license" data-set="500">Single Site License</option> <option value="license" data-set="700">5 Site License</option> <option value="license" data-set="1400">Developers License</option> </select> In the woocommerce variation product - I want to add some data-set tags in option tag. data-set="<? php some code here…

VIEW QUESTION
Back To Top
Search