mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-18 14:13:46 +09:00
Version 1.0.29
This commit is contained in:
+25
-3
@@ -271,11 +271,17 @@ $this->sections[] = array(
|
||||
'required' => array( 'wpadmin_register_redirect', '=', 'custom_url' ),
|
||||
),
|
||||
|
||||
array(
|
||||
'id' => 'wpadmin_allow_ips',
|
||||
'type' => 'textarea',
|
||||
'title' => __( 'Whitelisted Backend IPs' ),
|
||||
'desc' => __('Always allow the specified IP addresses to access the backend login screen and WP-admin to avoid being locked from site backend.')
|
||||
),
|
||||
|
||||
array(
|
||||
'id' => 'blocked_ips',
|
||||
'type' => 'textarea',
|
||||
'title' => __( 'Blocked IP Addresses' ),
|
||||
'desc' => __( 'Enter one IP per line, you can also use wildcards to block a specific range e.g. 41.83.*.*' ),
|
||||
'desc' => __('This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or target specific range with a wildcard')
|
||||
),
|
||||
|
||||
@@ -283,7 +289,6 @@ $this->sections[] = array(
|
||||
'id' => 'blocked_emails',
|
||||
'type' => 'textarea',
|
||||
'title' => __( 'Blocked Email Addresses' ),
|
||||
'desc' => __( 'Enter one email address per line and you can also specify all emails from specific service to be blocked by using wildcard: *@hotmail.com' ),
|
||||
'desc' => __('This will block the specified e-mail addresses from being able to sign up or sign in to your site.')
|
||||
),
|
||||
|
||||
@@ -291,7 +296,6 @@ $this->sections[] = array(
|
||||
'id' => 'blocked_words',
|
||||
'type' => 'textarea',
|
||||
'title' => __( 'Blacklist Words' ),
|
||||
'desc' => __( 'The words specified here can not be used as username during registration, please enter one word per line to prevent the usage of this word in a username / during registration' ),
|
||||
'desc' => __('This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their username'),
|
||||
'default' => 'admin' . "\r\n" . 'administrator' . "\r\n" . 'webmaster' . "\r\n" . 'support' . "\r\n" . 'staff'
|
||||
),
|
||||
@@ -1445,6 +1449,24 @@ $this->sections[] = array(
|
||||
|
||||
);
|
||||
|
||||
$this->sections[] = array(
|
||||
|
||||
'subsection' => true,
|
||||
'title' => __( 'Custom CSS'),
|
||||
'fields' => array(
|
||||
|
||||
array(
|
||||
'id' => 'custom_css',
|
||||
'type' => 'textarea',
|
||||
'title' => __( 'Custom CSS' ),
|
||||
'desc' => __('Any custom css rules that you specify here will be applied globally to the plugin.'),
|
||||
'rows' => 20,
|
||||
),
|
||||
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
/***
|
||||
*** @
|
||||
***/
|
||||
|
||||
Reference in New Issue
Block a user