Skip to content

Instantly share code, notes, and snippets.

@permanart
Created July 19, 2024 08:58
Show Gist options
  • Select an option

  • Save permanart/7972deda65cfab28cf9763a96a780d65 to your computer and use it in GitHub Desktop.

Select an option

Save permanart/7972deda65cfab28cf9763a96a780d65 to your computer and use it in GitHub Desktop.
Displat custom button before checkout in cart wocoomerce
function wa_before_co() {
?>
<a href="https://domain.com" class="button">Your custom button</a>
<?php
}
add_action( 'woocommerce_proceed_to_checkout', 'wa_before_co', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment