Woocommerce: Which hook to replace deprecated “woocommerce_add_order_item_meta”

2017/2018 THE RIGHT WAY (Using new CRUD setters and Getters methods) Related: Replace woocommerce_add_order_item_meta hook in Woocommerce 3.4 Since woocommerce 3 that has improved many things making drastic changes, the action hook woocommerce_add_order_item_meta still work perfectly even in woocommerce version 3.3+. This hook is enabled by WC_Checkout class methods and related functions in the checkout … Read more

WooCommerce action hooks and overriding templates

First in reference below you will find how to override properly woocommerce templates via a theme (avoiding editing the plugin templates). In your first code snippet, as you can see for woocommerce_single_product_summary hook, you have in order all the different templates that are @hooked in this hook location with do_action() WordPress function: do_action( ‘woocommerce_single_product_summary’ ); … Read more