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]
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 ); }
Expand full source code Collapse full source code View on GitHub
User Contributed Notes User Contributed Notes
Permalink: