LLMS_Form_Field::prepare_voucher()

Additional preparation for the special voucher field.


Return Return

(void)


Top ↑

Source Source

File: includes/forms/class-llms-form-field.php

955
956
957
958
959
960
961
962
963
964
965
966
967
protected function prepare_voucher() {
 
    if ( ! $this->settings['required'] && $this->settings['toggleable'] ) {
 
        $this->settings['label'] = sprintf( '<a class="llms-voucher-toggle" id="llms-voucher-toggle" href="#">%s</a>', $this->settings['label'] );
 
        $this->settings['attributes']['style'] = 'display:none;';
 
        $this->settings['data_store_key'] = false;
 
    }
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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