Skip to content

Commit

Permalink
Fees name field limit added
Browse files Browse the repository at this point in the history
  • Loading branch information
harunollyo committed Jul 17, 2023
1 parent f6f259e commit c81aeb2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions classes/Options_V2.php
Original file line number Diff line number Diff line change
Expand Up @@ -899,8 +899,10 @@ public function get_setting_fields() {
'type' => 'textarea',
'label' => __( 'Fee Description', 'tutor' ),
'placeholder' => __( 'Fee Description', 'tutor' ),
'desc' => __( 'Set a description for the fee that you are deducting. Make sure to give a reasonable explanation to maintain transparency with your site’s instructors', 'tutor' ),
'default' => 'free',
'desc' => __( 'Set a description for the fee that you are deducting. Make sure to give a reasonable explanation to maintain transparency with your site’s instructors (within 200-character limit).', 'tutor' ),
'maxlength' => 200,
'rows' => 5,
'default' => 'Maintenance Fees',
),
array(
'key' => 'fee_amount_type',
Expand Down

0 comments on commit c81aeb2

Please sign in to comment.