mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
Version 1.0.41
This commit is contained in:
@@ -88,13 +88,19 @@ class UM_Admin_Access {
|
||||
*** @add form metabox
|
||||
***/
|
||||
function add_metabox_form() {
|
||||
global $ultimatemember;
|
||||
|
||||
$types = get_post_types();
|
||||
$types = $ultimatemember->query->get_post_types;
|
||||
foreach($types as $post_type) {
|
||||
if ( $this->core_post_type( $post_type ) ) return;
|
||||
add_meta_box('um-admin-access-settings', __('Access Control'), array(&$this, 'load_metabox_form'), $post_type, 'side', 'default');
|
||||
|
||||
if ( !$this->core_post_type( $post_type ) ) {
|
||||
|
||||
add_meta_box('um-admin-access-settings', __('Access Control'), array(&$this, 'load_metabox_form'), $post_type, 'side', 'default');
|
||||
|
||||
}
|
||||
|
||||
do_action('um_admin_custom_access_metaboxes');
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -363,7 +363,7 @@ class UM_Admin_Metabox {
|
||||
|
||||
$where = array( 'ID' => $post_id );
|
||||
if (empty($_POST['post_title'])) $_POST['post_title'] = 'Role #'.$post_id;
|
||||
$wpdb->update( $wpdb->posts, array( 'post_title' => $_POST['post_title'], 'post_name' => wp_unique_post_slug( sanitize_title( $_POST['post_title'] ) ) ), $where );
|
||||
$wpdb->update( $wpdb->posts, array( 'post_title' => $_POST['post_title'], 'post_name' => sanitize_title( $_POST['post_title'] ) ), $where );
|
||||
|
||||
// save
|
||||
delete_post_meta( $post_id, '_um_can_view_roles' );
|
||||
@@ -421,15 +421,20 @@ class UM_Admin_Metabox {
|
||||
}
|
||||
}
|
||||
|
||||
$settings['textarea_rows'] = 8;
|
||||
// needed on forms only
|
||||
if ( isset( $screen->id ) && strstr( $screen->id, 'um_form' ) ) {
|
||||
|
||||
echo '<div class="um-hidden-editor-edit" style="display: none">';
|
||||
wp_editor( '', 'um_editor_edit', $settings );
|
||||
echo '</div>';
|
||||
$settings['textarea_rows'] = 8;
|
||||
|
||||
echo '<div class="um-hidden-editor-new" style="display: none">';
|
||||
wp_editor( '', 'um_editor_new', $settings );
|
||||
echo '</div>';
|
||||
echo '<div class="um-hidden-editor-edit" style="display: none">';
|
||||
wp_editor( '', 'um_editor_edit', $settings );
|
||||
echo '</div>';
|
||||
|
||||
echo '<div class="um-hidden-editor-new" style="display: none">';
|
||||
wp_editor( '', 'um_editor_new', $settings );
|
||||
echo '</div>';
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -901,7 +901,7 @@ class UM_Builtin {
|
||||
$all[$k]['title'] = stripslashes( $arr['title'] );
|
||||
}
|
||||
|
||||
if ( $exclude_types && in_array( $arr['type'], $exclude_types ) ) {
|
||||
if ( $exclude_types && isset( $arr['type'] ) && in_array( $arr['type'], $exclude_types ) ) {
|
||||
unset( $all[$k] );
|
||||
}
|
||||
if ( isset( $arr['account_only'] ) || isset( $arr['private_use'] ) ) {
|
||||
|
||||
+7
-5
@@ -1130,12 +1130,12 @@ class UM_Fields {
|
||||
|
||||
/* Gap/Space */
|
||||
case 'spacing':
|
||||
$output .= '<div class="um-field-spacing" style="height: '.$spacing.'"></div>';
|
||||
$output .= '<div class="um-field um-field-spacing' . $classes . '"' . $conditional . ' style="height: '.$spacing.'"></div>';
|
||||
break;
|
||||
|
||||
/* A line divider */
|
||||
case 'divider':
|
||||
$output .= '<div class="um-field-divider" style="border-bottom: '.$borderwidth.'px '.$borderstyle.' '.$bordercolor.'">';
|
||||
$output .= '<div class="um-field um-field-divider' . $classes . '"' . $conditional . ' style="border-bottom: '.$borderwidth.'px '.$borderstyle.' '.$bordercolor.'">';
|
||||
if ( $divider_text ) {
|
||||
$output .= '<div class="um-field-divider-text"><span>' . $divider_text . '</span></div>';
|
||||
}
|
||||
@@ -1597,7 +1597,9 @@ class UM_Fields {
|
||||
function array_sort_by_column($arr, $col, $dir = SORT_ASC) {
|
||||
$sort_col = array();
|
||||
foreach ($arr as $key=> $row) {
|
||||
$sort_col[$key] = $row[$col];
|
||||
if ( isset( $row[$col] ) ) {
|
||||
$sort_col[$key] = $row[$col];
|
||||
}
|
||||
}
|
||||
|
||||
array_multisort($sort_col, $dir, $arr);
|
||||
@@ -1856,12 +1858,12 @@ class UM_Fields {
|
||||
|
||||
/* Gap/Space */
|
||||
case 'spacing':
|
||||
$output .= '<div class="um-field-spacing" style="height: '.$spacing.'"></div>';
|
||||
$output .= '<div class="um-field um-field-spacing' . $classes . '"' . $conditional . ' style="height: '.$spacing.'"></div>';
|
||||
break;
|
||||
|
||||
/* A line divider */
|
||||
case 'divider':
|
||||
$output .= '<div class="um-field-divider" style="border-bottom: '.$borderwidth.'px '.$borderstyle.' '.$bordercolor.'">';
|
||||
$output .= '<div class="um-field um-field-divider' . $classes . '"' . $conditional . ' style="border-bottom: '.$borderwidth.'px '.$borderstyle.' '.$bordercolor.'">';
|
||||
if ( $divider_text ) {
|
||||
$output .= '<div class="um-field-divider-text"><span>' . $divider_text . '</span></div>';
|
||||
}
|
||||
|
||||
@@ -4,6 +4,18 @@ class UM_Query {
|
||||
|
||||
function __construct() {
|
||||
|
||||
add_action('wp_loaded', array(&$this, 'get_post_types'), 100 );
|
||||
|
||||
}
|
||||
|
||||
/***
|
||||
*** @get all post types
|
||||
***/
|
||||
function get_post_types() {
|
||||
$array = get_post_types();
|
||||
foreach( $array as $k => $v ) {
|
||||
$this->get_post_types[] = $k;
|
||||
}
|
||||
}
|
||||
|
||||
/***
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
Plugin Name: Ultimate Member
|
||||
Plugin URI: http://ultimatemember.com/
|
||||
Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
|
||||
Version: 1.0.40
|
||||
Version: 1.0.41
|
||||
Author: Ultimate Member
|
||||
Author URI: http://ultimatemember.com/
|
||||
*/
|
||||
|
||||
+10
-1
@@ -7,7 +7,7 @@ Tags: access control, author, authors, author profile, comments, community, comm
|
||||
Requires at least: 4.1
|
||||
Tested up to: 4.1
|
||||
|
||||
Stable Tag: 1.0.40
|
||||
Stable Tag: 1.0.41
|
||||
|
||||
License: GNU Version 2 or Any Later Version
|
||||
|
||||
@@ -184,6 +184,15 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.41: February 5, 2015 =
|
||||
|
||||
* New: added access control settings to custom post types, you can have custom access settings applied to your custom post types now
|
||||
* New: divider and spacing fields fully support conditional logic
|
||||
* Tweak: Turkish language completed
|
||||
* Tweak: updated some translations
|
||||
* Fixed: a couple of PHP warnings and errors have been resolved
|
||||
* Fixed: conflict with MailPoet plugin has been resolved
|
||||
|
||||
= 1.0.40: February 4, 2015 =
|
||||
|
||||
* Tweak: line-breaks and automatic urls are now working for textarea fields
|
||||
|
||||
+67
-17
@@ -74,14 +74,18 @@ $this->sections[] = array(
|
||||
'title' => __( 'Automatically redirect author page to their profile?' ),
|
||||
'default' => 1,
|
||||
'desc' => __('If enabled, author pages will automatically redirect to the user\'s profile page'),
|
||||
'on' => __('Yes','ultimatemember'),
|
||||
'off' => __('No','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
'id' => 'members_page',
|
||||
'type' => 'switch',
|
||||
'title' => __( 'Members Directory' ),
|
||||
'title' => __( 'Enable Members Directory' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Control whether to enable or disable member directories on this site',
|
||||
'on' => __('Yes','ultimatemember'),
|
||||
'off' => __('No','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -90,6 +94,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Use Gravatars?' ),
|
||||
'default' => 0,
|
||||
'desc' => __('Do you want to use gravatars instead of the default plugin profile photo (If the user did not upload a custom profile photo / avatar)','ultimatemember'),
|
||||
'on' => __('Yes','ultimatemember'),
|
||||
'off' => __('No','ultimatemember'),
|
||||
),
|
||||
|
||||
)
|
||||
@@ -112,6 +118,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Password Account Tab' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Enable/disable the Password account tab in account page',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -120,6 +128,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Privacy Account Tab' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Enable/disable the Privacy account tab in account page',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -128,6 +138,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Notifications Account Tab' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Enable/disable the Notifications account tab in account page',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -136,6 +148,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Delete Account Tab' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Enable/disable the Delete account tab in account page',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -201,7 +215,7 @@ $this->sections[] = array(
|
||||
'default' => array(),
|
||||
'title' => __( 'Exclude the following URLs','ultimatemember' ),
|
||||
'desc' => __( 'Here you can exclude URLs beside the redirect URI to be accessible to everyone','ultimatemember' ),
|
||||
'add_text' => __('Add New URL'),
|
||||
'add_text' => __('Add New URL','ultimatemember'),
|
||||
'required' => array( 'accessible', '=', 2 ),
|
||||
),
|
||||
|
||||
@@ -373,7 +387,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => 'Welcome to {site_name}!',
|
||||
'required' => array( 'welcome_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -409,7 +423,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => 'Please activate your account',
|
||||
'required' => array( 'checkmail_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -441,7 +455,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => 'Your account is pending review',
|
||||
'required' => array( 'pending_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -473,7 +487,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => 'Your account at {site_name} is now active',
|
||||
'required' => array( 'approved_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -509,7 +523,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => 'Your account has been rejected',
|
||||
'required' => array( 'rejected_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -540,7 +554,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line' ),
|
||||
'default' => 'Your account has been deactivated',
|
||||
'required' => array( 'inactive_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -571,7 +585,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => 'Your account has been deleted',
|
||||
'required' => array( 'deletion_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -602,7 +616,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => 'Reset your password',
|
||||
'required' => array( 'resetpw_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -634,7 +648,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => 'Your {site_name} password has been changed',
|
||||
'required' => array( 'changedpw_email_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -678,6 +692,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'New User Notification','ultimatemember' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Whether to receive notification when a new user account is approved',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -687,7 +703,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => '[{site_name}] New user account',
|
||||
'required' => array( 'notification_new_user_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -709,6 +725,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Account Needs Review Notification','ultimatemember' ),
|
||||
'default' => 0,
|
||||
'desc' => 'Whether to receive notification when an account needs admin review',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -718,7 +736,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => '[{site_name}] New user awaiting review',
|
||||
'required' => array( 'notification_review_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -741,6 +759,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Account Deletion Notification','ultimatemember' ),
|
||||
'default' => 0,
|
||||
'desc' => 'Whether to receive notification when an account is deleted',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -750,7 +770,7 @@ $this->sections[] = array(
|
||||
'subtitle' => __( 'Subject Line','ultimatemember' ),
|
||||
'default' => '[{site_name}] Account deleted',
|
||||
'required' => array( 'notification_deletion_on', '=', 1 ),
|
||||
'desc' => 'This is the subject line of the e-mail',
|
||||
'desc' => __('This is the subject line of the e-mail','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -784,7 +804,7 @@ $this->sections[] = array(
|
||||
'desc' => __( 'Here you can define which thumbnail sizes will be created for each profile photo upload.','ultimatemember' ),
|
||||
'default' => array( 40, 80, 190 ),
|
||||
'validate' => 'numeric',
|
||||
'add_text' => __('Add New Size'),
|
||||
'add_text' => __('Add New Size','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -794,7 +814,7 @@ $this->sections[] = array(
|
||||
'desc' => __( 'Here you can define which thumbnail sizes will be created for each cover photo upload.','ultimatemember' ),
|
||||
'default' => array( 300, 600 ),
|
||||
'validate' => 'numeric',
|
||||
'add_text' => __('Add New Size'),
|
||||
'add_text' => __('Add New Size','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1040,6 +1060,8 @@ $this->sections[] = array(
|
||||
'type' => 'switch',
|
||||
'title' => __( 'Show an asterisk for required fields','ultimatemember' ),
|
||||
'default' => 0,
|
||||
'on' => __('Yes','ultimatemember'),
|
||||
'off' => __('No','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1130,6 +1152,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Profile Secondary Button','ultimatemember' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Switch on/off the secondary button display in the form',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1216,6 +1240,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Profile Cover Photos','ultimatemember' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Switch on/off the profile cover photos',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1284,6 +1310,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Show display name in profile header','ultimatemember' ),
|
||||
'default' => um_get_metadefault('profile_show_name'),
|
||||
'desc' => 'Switch on/off the user name on profile header',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1292,6 +1320,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Show user description in header','ultimatemember' ),
|
||||
'default' => um_get_metadefault('profile_show_bio'),
|
||||
'desc' => 'Switch on/off the user description on profile header',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1322,6 +1352,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Show a custom message if profile is empty','ultimatemember' ),
|
||||
'default' => um_get_metadefault('profile_empty_text'),
|
||||
'desc' => 'Switch on/off the custom message that appears when the profile is empty',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1330,6 +1362,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Show the emoticon','ultimatemember' ),
|
||||
'default' => um_get_metadefault('profile_empty_text_emo'),
|
||||
'desc' => 'Switch on/off the emoticon (sad face) that appears above the message',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
'required' => array( 'profile_empty_text', '=', 1 ),
|
||||
),
|
||||
|
||||
@@ -1343,6 +1377,8 @@ $tab_options[] = array(
|
||||
'type' => 'switch',
|
||||
'title' => __('Enable profile menu','ultimatemember'),
|
||||
'default' => 1,
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
);
|
||||
|
||||
foreach( $tabs as $id => $tab ) {
|
||||
@@ -1352,6 +1388,8 @@ $tab_options[] = array(
|
||||
'title' => sprintf(__('%s Tab','ultimatemember'), $tab ),
|
||||
'default' => 1,
|
||||
'required' => array( 'profile_menu', '=', 1 ),
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1372,6 +1410,8 @@ $tab_options[] = array(
|
||||
'title' => __('Enable menu icons in desktop view','ultimatemember'),
|
||||
'default' => 1,
|
||||
'required' => array( 'profile_menu', '=', 1 ),
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
);
|
||||
|
||||
$tab_options[] = array(
|
||||
@@ -1380,6 +1420,8 @@ $tab_options[] = array(
|
||||
'title' => __('Enable counts in menu','ultimatemember'),
|
||||
'default' => 1,
|
||||
'required' => array( 'profile_menu', '=', 1 ),
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
);
|
||||
|
||||
$this->sections[] = array(
|
||||
@@ -1456,6 +1498,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Registration Secondary Button','ultimatemember' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Switch on/off the secondary button display in the form',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1547,6 +1591,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Login Secondary Button','ultimatemember' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Switch on/off the secondary button display in the form',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1564,6 +1610,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Login Forgot Password Link','ultimatemember' ),
|
||||
'default' => 1,
|
||||
'desc' => 'Switch on/off the forgot password link in login form',
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
)
|
||||
@@ -1604,6 +1652,8 @@ $this->sections[] = array(
|
||||
'title' => __( 'Disable JS/CSS Compression','ultimatemember' ),
|
||||
'default' => 0,
|
||||
'desc' => __('Not recommended. This will load all plugin js and css files separately and may slow down your website. Use this setting for development or debugging purposes only.','ultimatemember'),
|
||||
'on' => __('On','ultimatemember'),
|
||||
'off' => __('Off','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
@@ -1612,7 +1662,7 @@ $this->sections[] = array(
|
||||
'default' => array(),
|
||||
'title' => __( 'Never load plugin JS and CSS on the following pages','ultimatemember' ),
|
||||
'desc' => __( 'Enter a url or page slug (e.g /about/) to disable loading the plugin\'s css and js on that page.','ultimatemember' ),
|
||||
'add_text' => __('Add New Page'),
|
||||
'add_text' => __('Add New Page','ultimatemember'),
|
||||
),
|
||||
|
||||
array(
|
||||
|
||||
Reference in New Issue
Block a user