skip to Main Content

How to debug in WooCommerce 3+

I am creating a custom shipping method for Woocommerce using this tutorial https://docs.woocommerce.com/document/shipping-method-api/ but I am having issues debugging. Whenever shipping methods get updated by user, Woocommerce calls calculate shipping. I have overridden this function with the following. public function…

VIEW QUESTION

WooCommerce – adding object terms not working properly

I'm using the following code to add attributes with terms: $taxonomy = 'pa_' . $attr['name']; // The attribute taxonomy if (!taxonomy_exists($taxonomy)) { global $wpdb; $insert = $wpdb->insert( $wpdb->prefix . 'woocommerce_attribute_taxonomies', array( 'attribute_name' => $attr['name'], 'attribute_label' => $attr['name'], 'attribute_public' => 0…

VIEW QUESTION
Back To Top
Search