Skip to content

Commit

Permalink
Update settings.php
Browse files Browse the repository at this point in the history
  • Loading branch information
reygcalantaol committed Dec 27, 2022
1 parent 399424f commit 99c54ae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions includes/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function admin_menu() {
'zior_lightbox_settings',
[
$this,
'settings_page'
'settings_page',
]
);
}
Expand All @@ -74,25 +74,25 @@ public function render_lightbox_settings() {
?></p>
<br/>
<label for="zrl_allowed_classes"><?php echo esc_html__( 'Allow lightbox on the following class', 'zior-lightbox'); ?></label><br/>
<textarea name="zrl_allowed_classes" row="5"><?php echo $zrl_allowed_classes; ?></textarea>
<textarea name="zrl_allowed_classes" row="5"><?php echo esc_textarea( $zrl_allowed_classes ); ?></textarea>
<p class="description"><?php
echo esc_html__('Allow lightbox on the specified classes only. Enter class separated by comma (,).', 'zior-lightbox');
?></p>
<br/>
<label for="zrl_allowed_parent_classes"><?php echo esc_html__( 'Allow lightbox on the following parent class', 'zior-lightbox'); ?></label><br/>
<textarea name="zrl_allowed_parent_classes" row="10"><?php echo $zrl_allowed_parent_classes; ?></textarea>
<textarea name="zrl_allowed_parent_classes" row="10"><?php echo esc_textarea( $zrl_allowed_parent_classes ); ?></textarea>
<p class="description"><?php
echo esc_html__('Allow lightbox on the specified parent classes only. Enter class separated by comma (,).', 'zior-lightbox');
?></p>
<br/>
<label for="zrl_disabled_classes"><?php echo esc_html__( 'Disable lightbox on the following class', 'zior-lightbox'); ?></label><br/>
<textarea name="zrl_disabled_classes" row="5"><?php echo $zrl_disabled_classes; ?></textarea>
<textarea name="zrl_disabled_classes" row="5"><?php echo esc_textarea( $zrl_disabled_classes ); ?></textarea>
<p class="description"><?php
echo esc_html__( 'Disabled lightbox on the specified classes. Enter class separated by comma (,).', 'zior-lightbox' );
?></p>
<br/>
<label for="zrl_disabled_parent_classes"><?php echo esc_html__( 'Disable lightbox on the following parent class', 'zior-lightbox'); ?></label><br/>
<textarea name="zrl_disabled_parent_classes" row="5"><?php echo $zrl_disabled_parent_classes; ?></textarea>
<textarea name="zrl_disabled_parent_classes" row="5"><?php echo esc_textarea( $zrl_disabled_parent_classes ); ?></textarea>
<p class="description"><?php
echo esc_html__('Disable lightbox on the specific parent class. Enter class separated by comma (,).', 'zior-lightbox');
?></p>
Expand Down

0 comments on commit 99c54ae

Please sign in to comment.