Skip to content

Instantly share code, notes, and snippets.

@Welland
Created June 18, 2014 15:37
Show Gist options
  • Save Welland/5f8c3d7c32839c1fa3ab to your computer and use it in GitHub Desktop.
Save Welland/5f8c3d7c32839c1fa3ab to your computer and use it in GitHub Desktop.
WooCommerce - Payment Page URL
$payment_page = get_permalink( woocommerce_get_page_id( 'pay' ) );
//make ssl if needed
if ( get_option( 'woocommerce_force_ssl_checkout' ) == 'yes' ) $payment_page = str_replace( 'http:', 'https:', $payment_page );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment