| 1 |
<?php |
| 2 |
/** |
| 3 |
* Basic Settings |
| 4 |
**/ |
| 5 |
|
| 6 |
if( !defined("ABSPATH") ) die("Not Allowed"); |
| 7 |
?> |
| 8 |
|
| 9 |
<div class="wppcomment-basic-setting-section wpcomment-settings-wrapper"> |
| 10 |
<form class="wpcomment-settings-form"> |
| 11 |
<input type="hidden" name="action" value="wpcomment_save_settings" /> |
| 12 |
<input type="hidden" name="wpcomment_nonce" value="<?php echo wp_create_nonce('wpcomment_save_form_meta_nonce'); ?>"> |
| 13 |
|
| 14 |
<h2 class="wppcomment-heading-style"><?php _e('WP Comments Settings', "wppcomment"); ?><span></span></h2> |
| 15 |
<button type="button" class="btn btn-info wpcomment_settings_toggle"><?php _e('<< Fields', "wpcomment"); ?></button> |
| 16 |
|
| 17 |
<div class="row mt-5"> |
| 18 |
<div class="col-md-6 col-sm-12"> |
| 19 |
<p class="form-group"> |
| 20 |
<label for="wpcomment_heading"><?php _e('Heading will appear before meta, leave blank for none |
| 21 |
', "wppcomment"); ?> |
| 22 |
|
| 23 |
</label> |
| 24 |
<input type="text" class="form-control" id="wpcomment_heading" name="wpcomment_heading" value="<?php echo WPCOMMENT_ADMIN()::get_option('wpcomment_heading');?>"> |
| 25 |
</p> |
| 26 |
</div> |
| 27 |
</div> |
| 28 |
|
| 29 |
<?php do_action('wpcomment_after_general_settings'); ?> |
| 30 |
|
| 31 |
<input class="button button-primary" type="submit" value="Save" /> |
| 32 |
<div class="clearboth"></div> |
| 33 |
</form> |
| 34 |
</div> |
| 35 |
|