LLMS_Payment_Gateway_Manual::get_payment_instructions()

Get fields displayed on the checkout form


Return Return

(string)


Top ↑

Source Source

File: includes/class.llms.gateway.manual.php

89
90
91
92
93
94
95
96
97
public function get_payment_instructions() {
    $opt = $this->get_option( 'payment_instructions' );
    if ( $opt ) {
        $fields = '<div class="llms-notice llms-info"><h3>' . esc_html__( 'Payment Instructions', 'lifterlms' ) . '</h3>' . wpautop( wptexturize( wp_kses_post( $opt ) ) ) . '</div>';
    } else {
        $fields = '';
    }
    return apply_filters( 'llms_get_payment_instructions', $fields, $this->id );
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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