LLMS_Payment_Gateway_Manual::get_payment_instructions()
Get fields displayed on the checkout form
Return Return
(string)
Source Source
File: includes/class.llms.gateway.manual.php
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 );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |