Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tamarazuk
Last active March 2, 2016 06:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamarazuk/0bb754e26c1292e113ce to your computer and use it in GitHub Desktop.
Save tamarazuk/0bb754e26c1292e113ce to your computer and use it in GitHub Desktop.
Move Checkout Add-ons
<?php
// Reposition Checkout Addons to under Order Notes
function sv_wc_checkout_addons_change_position() {
return 'woocommerce_after_order_notes';
}
add_filter( 'wc_checkout_add_ons_position', 'sv_wc_checkout_addons_change_position' );
@torcat
Copy link

torcat commented Mar 2, 2016

Hi evryone

can someone help me,
if I want to move the checkout addons in to order details-shipping options table under shipping options
what code need to use?
thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment