Skip to content

Instantly share code, notes, and snippets.

@esedic
Forked from corsonr/functions.php
Created March 17, 2022 13:40
Show Gist options
  • Select an option

  • Save esedic/c6036afe623c4e4fecaa376ac3181db2 to your computer and use it in GitHub Desktop.

Select an option

Save esedic/c6036afe623c4e4fecaa376ac3181db2 to your computer and use it in GitHub Desktop.
WooCommerce: disable payments on checkout page
<?php // Do not include this if already open! Code goes in theme functions.php.
// Disable all payment gateways on the checkout page and replace the "Pay" button by "Place order"
add_filter( 'woocommerce_cart_needs_payment', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment