Back to list of all filter and action hooks for Fluid Checkout PRO.
Description #
Fires when rendering the order review table on the order pay page.
Parameters #
$orderWC_Order object representing the order that is being paid.
Example #
/**
* Add a reminder below the order review table on the order-pay page.
*/
function fc_custom_order_pay_review_table_note( $order ) {
echo '<p class="fc-order-pay-note">Custom note</p>';
}
add_action( 'fc_pro_order_pay_order_review_table', 'fc_custom_order_pay_review_table_note' );
