Learn how to set up, customize, and expand the functionality of your WooCommerce products with our library of documentation and tutorials.
  1. Documentation /
  2. WooCommerce /
  3. Getting Started /
  4. 4. Sell Products /
  5. Core Payment Options

Core Payment Options


Documents

  • Check if a Payment Gateway Support Refunds, Subscriptions or Pre-orders

    Check if a payment gateway supports refunds, subscriptions or pre-orders by looking at gateway code. Simplify Commerce example In case you should search for $this->supports, as shown in the example below from the Simplify Commerce gateway: class WC_Gateway_Simplify_Commerce extends WC_Payment_Gateway { /** * Constructor */ public function __construct() { $this->id = ‘simplify_commerce’; $this->method_title = __( ‘Simplify Commerce’, ‘woocommerce’ ); $this->method_description […]

  • Cash on Delivery

    Cash on Delivery (COD) is a payment gateway that required no payment be made online. Orders using Cash on Delivery are set to Processing until payment is made upon delivery of the order by you or your shipping method. You, as the store owner, need to confirm payment was collected before marking orders Complete in WooCommerce. Alternatively, the […]

  • Check Payments

    Check Payments is a payment gateway that doesn’t require payment to be made online. Orders using Check Payments are set On Hold until payment clears outside of WooCommerce. You, as the store owner, should confirm that cheques have cleared before processing orders in WooCommerce. It’s important to verify that you are paid before shipping an order and […]

  • Direct Bank Transfer (BACS)

    Direct Bank Transfer, or Bank Account Clearing System (BACS), is a gateway that require no payment be made online. Orders using Direct Bank Transfer are set On Hold until payment clears outside of WooCommerce. You, as the store owner, should confirm that payments have cleared bank accounts before processing orders in WooCommerce. It’s important to […]

  • How to handle multiple regions and currencies with WooCommerce

    In a global age, very few store owners only sell to one region, with one language and one currency. There are a number of different things that play a role, and below we’ll discuss several of those. What you want to offer Solution Links Multiple taxes and shipping zones WooCommerce core Download Multiple currencies Currency […]