llms_confirm_payment_url( $order_key = null )

Get url for redirect when user confirms payment


Description Description


Return Return

(string) [url to redirect user to on form post]


Top ↑

Source Source

File: includes/functions/llms.functions.page.php

function llms_confirm_payment_url( $order_key = null ) {

	$confirm_payment_url = llms_get_endpoint_url( 'confirm-payment', '', get_permalink( llms_get_page_id( 'checkout' ) ) );

	$confirm_payment_url = add_query_arg( 'order', $order_key, $confirm_payment_url );

	return apply_filters( 'lifterlms_checkout_confirm_payment_url', $confirm_payment_url );

}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.





Permalink: