| 1 |
<?php if( ! defined( "ABSPATH" ) ) exit() ?> |
| 2 |
|
| 3 |
<input type="hidden" name="wpfaction" value="subscriptions_settings_save"> |
| 4 |
|
| 5 |
<?php |
| 6 |
WPF()->settings->header( 'subscriptions' ); |
| 7 |
WPF()->settings->form_field( 'subscriptions', 'subscribe_confirmation' ); |
| 8 |
WPF()->settings->form_field( 'subscriptions', 'subscribe_checkbox_on_post_editor' ); |
| 9 |
WPF()->settings->form_field( 'subscriptions', 'subscribe_checkbox_default_status' ); |
| 10 |
WPF()->settings->form_field( 'subscriptions', 'user_mention_notify' ); |
| 11 |
WPF()->settings->form_field( 'subscriptions', 'user_following_notify' ); |
| 12 |
?> |
| 13 |
|
| 14 |
<div class="wpf-subtitle"> |
| 15 |
<span class="dashicons dashicons-email-alt" style="font-size: 22px;"></span> <?php _e( 'Email Template - Subscription Confirmation', 'wpforo' ) ?> |
| 16 |
</div> |
| 17 |
|
| 18 |
<?php |
| 19 |
WPF()->settings->form_field( 'subscriptions', 'confirmation_email_subject' ); |
| 20 |
WPF()->settings->form_field( 'subscriptions', 'confirmation_email_message' ); |
| 21 |
?> |
| 22 |
|
| 23 |
<div class="wpf-subtitle"> |
| 24 |
<span class="dashicons dashicons-email-alt" style="font-size: 22px;"></span> <?php _e( 'Email Template - New Topic Notification', 'wpforo' ) ?> |
| 25 |
</div> |
| 26 |
|
| 27 |
<?php |
| 28 |
WPF()->settings->form_field( 'subscriptions', 'new_topic_notification_email_subject' ); |
| 29 |
WPF()->settings->form_field( 'subscriptions', 'new_topic_notification_email_message' ); |
| 30 |
?> |
| 31 |
|
| 32 |
<div class="wpf-subtitle"> |
| 33 |
<span class="dashicons dashicons-email-alt" style="font-size: 22px;"></span> <?php _e( 'Email Template - New Reply Notification', 'wpforo' ) ?> |
| 34 |
</div> |
| 35 |
|
| 36 |
<?php |
| 37 |
WPF()->settings->form_field( 'subscriptions', 'new_post_notification_email_subject' ); |
| 38 |
WPF()->settings->form_field( 'subscriptions', 'new_post_notification_email_message' ); |
| 39 |
?> |
| 40 |
|
| 41 |
<div class="wpf-subtitle"> |
| 42 |
<span class="dashicons dashicons-email-alt" style="font-size: 22px;"></span> <?php _e( 'Email Template - User Mentioning', 'wpforo' ) ?> |
| 43 |
</div> |
| 44 |
|
| 45 |
<?php |
| 46 |
WPF()->settings->form_field( 'subscriptions', 'user_mention_email_subject' ); |
| 47 |
WPF()->settings->form_field( 'subscriptions', 'user_mention_email_message' ); |
| 48 |
?> |
| 49 |
|
| 50 |
<div class="wpf-subtitle"> |
| 51 |
<span class="dashicons dashicons-email-alt" style="font-size: 22px;"></span> <?php _e( 'Email Template - User Following', 'wpforo' ) ?> |
| 52 |
</div> |
| 53 |
|
| 54 |
<?php |
| 55 |
WPF()->settings->form_field( 'subscriptions', 'user_following_email_subject' ); |
| 56 |
WPF()->settings->form_field( 'subscriptions', 'user_following_email_message' ); |
| 57 |
|