Search Documentation

WP Travel Developer Documentation

  1. Home
  2. Docs
  3. WP Travel Developer Documentation
  4. Filters Associated With Checkout Page
  5. Filter :wp_travel_checkout_default_gateway

Filter :wp_travel_checkout_default_gateway

WP Travel checkout billing fields.

Source

File: /inc/form-fields.php
Used by: /inc/form-fields.php

Parameters
$selected_gateway

Example:

function prefix_wp_travel_checkout_default_gateway( $selected_gateway ) {
    $selected_gateway = ‘paypal’;
    return $selected_gateway;
}
add_filter( 'wp_travel_checkout_default_gateway', 'prefix_wp_travel_checkout_default_gateway' );
Was this article helpful to you? Yes No

How can we help?