Version Description
- FIX: Wizard Bugs
- FIX: Uninstall PLugin Bugs
Download this release
Release Info
Developer | contact-banker |
Plugin | WP Mail Bank: WordPress SMTP Plugin & Email Logs |
Version | 3.0.14 |
Comparing to | |
See all releases |
Code changes from version 3.0.13 to 3.0.14
- includes/sidebar.php +3 -3
- includes/translations.php +1 -1
- lib/admin-bar-menu.php +2 -2
- lib/sidebar-menu.php +0 -2
- readme.txt +6 -1
- uninstall.php +0 -1
- views/roles-and-capabilities/roles-and-capabilities.php +1 -1
- wp-mail-bank.php +2 -2
includes/sidebar.php
CHANGED
@@ -112,9 +112,9 @@ if (!is_user_logged_in()) {
|
|
112 |
<a href="admin.php?page=mb_upgrade">
|
113 |
<i class="icon-custom-briefcase"></i>
|
114 |
<span class="title" style="color:yellow;">
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
</span>
|
119 |
</a>
|
120 |
</li>
|
112 |
<a href="admin.php?page=mb_upgrade">
|
113 |
<i class="icon-custom-briefcase"></i>
|
114 |
<span class="title" style="color:yellow;">
|
115 |
+
<strong>
|
116 |
+
<?php echo $mb_upgrade; ?>
|
117 |
+
</strong>
|
118 |
</span>
|
119 |
</a>
|
120 |
</li>
|
includes/translations.php
CHANGED
@@ -176,7 +176,7 @@ if (!is_user_logged_in()) {
|
|
176 |
$mb_remove_tables_tooltip = __("Please choose a specific option whether to allow Remove Tables at Uninstall", "wp-mail-bank");
|
177 |
$mb_monitoring_email_log_title = __("Monitoring Email Logs", "wp-mail-bank");
|
178 |
$mb_monitoring_email_log_tooltip = __("This field is used to allow Email Logs to monitor or not", "wp-mail-bank");
|
179 |
-
|
180 |
// Roles and Capabilities
|
181 |
$mb_roles_capabilities_show_menu = __("Show Mail Bank Menu", "wp-mail-bank");
|
182 |
$mb_roles_capabilities_show_menu_tooltip = __("Please choose a specific role who can see Sidebar Menu", "wp-mail-bank");
|
176 |
$mb_remove_tables_tooltip = __("Please choose a specific option whether to allow Remove Tables at Uninstall", "wp-mail-bank");
|
177 |
$mb_monitoring_email_log_title = __("Monitoring Email Logs", "wp-mail-bank");
|
178 |
$mb_monitoring_email_log_tooltip = __("This field is used to allow Email Logs to monitor or not", "wp-mail-bank");
|
179 |
+
|
180 |
// Roles and Capabilities
|
181 |
$mb_roles_capabilities_show_menu = __("Show Mail Bank Menu", "wp-mail-bank");
|
182 |
$mb_roles_capabilities_show_menu_tooltip = __("Please choose a specific role who can see Sidebar Menu", "wp-mail-bank");
|
lib/admin-bar-menu.php
CHANGED
@@ -112,7 +112,7 @@ if (!is_user_logged_in()) {
|
|
112 |
"title" => $mb_settings,
|
113 |
"href" => admin_url("admin.php?page=mb_settings")
|
114 |
));
|
115 |
-
|
116 |
$wp_admin_bar->add_menu(array
|
117 |
(
|
118 |
"parent" => "wp_mail_bank",
|
@@ -120,7 +120,7 @@ if (!is_user_logged_in()) {
|
|
120 |
"title" => $mb_roles_and_capabilities,
|
121 |
"href" => admin_url("admin.php?page=mb_roles_and_capabilities")
|
122 |
));
|
123 |
-
|
124 |
$wp_admin_bar->add_menu(array
|
125 |
(
|
126 |
"parent" => "wp_mail_bank",
|
112 |
"title" => $mb_settings,
|
113 |
"href" => admin_url("admin.php?page=mb_settings")
|
114 |
));
|
115 |
+
|
116 |
$wp_admin_bar->add_menu(array
|
117 |
(
|
118 |
"parent" => "wp_mail_bank",
|
120 |
"title" => $mb_roles_and_capabilities,
|
121 |
"href" => admin_url("admin.php?page=mb_roles_and_capabilities")
|
122 |
));
|
123 |
+
|
124 |
$wp_admin_bar->add_menu(array
|
125 |
(
|
126 |
"parent" => "wp_mail_bank",
|
lib/sidebar-menu.php
CHANGED
@@ -292,7 +292,6 @@ if (!is_user_logged_in()) {
|
|
292 |
include_once MAIL_BANK_DIR_PATH . "includes/footer.php";
|
293 |
}
|
294 |
}
|
295 |
-
|
296 |
/*
|
297 |
Function Name: mb_roles_and_capabilities
|
298 |
Parameters: No
|
@@ -322,7 +321,6 @@ if (!is_user_logged_in()) {
|
|
322 |
include_once MAIL_BANK_DIR_PATH . "includes/footer.php";
|
323 |
}
|
324 |
}
|
325 |
-
|
326 |
/*
|
327 |
Function Name: mb_feedbacks
|
328 |
Parameters: No
|
292 |
include_once MAIL_BANK_DIR_PATH . "includes/footer.php";
|
293 |
}
|
294 |
}
|
|
|
295 |
/*
|
296 |
Function Name: mb_roles_and_capabilities
|
297 |
Parameters: No
|
321 |
include_once MAIL_BANK_DIR_PATH . "includes/footer.php";
|
322 |
}
|
323 |
}
|
|
|
324 |
/*
|
325 |
Function Name: mb_feedbacks
|
326 |
Parameters: No
|
readme.txt
CHANGED
@@ -300,6 +300,11 @@ It allows the users to view the debugging output of logged emails.
|
|
300 |
|
301 |
== Changelog ==
|
302 |
|
|
|
|
|
|
|
|
|
|
|
303 |
= 3.0.13 =
|
304 |
|
305 |
* TWEAK: Freemius Code Removed
|
@@ -308,9 +313,9 @@ It allows the users to view the debugging output of logged emails.
|
|
308 |
|
309 |
= 3.0.12 =
|
310 |
|
|
|
311 |
* TWEAK: New & Easy Gallery UI
|
312 |
* TWEAK: Premium Version Links Removed
|
313 |
-
* TWEAK: CSS Conflictions Fixed
|
314 |
* TWEAK: Banners Removed
|
315 |
* TWEAK: Unwanted JS/CSS Files Removed
|
316 |
|
300 |
|
301 |
== Changelog ==
|
302 |
|
303 |
+
= 3.0.14 =
|
304 |
+
|
305 |
+
* FIX: Wizard Bugs
|
306 |
+
* FIX: Uninstall PLugin Bugs
|
307 |
+
|
308 |
= 3.0.13 =
|
309 |
|
310 |
* TWEAK: Freemius Code Removed
|
313 |
|
314 |
= 3.0.12 =
|
315 |
|
316 |
+
* FIX: CSS Conflictions
|
317 |
* TWEAK: New & Easy Gallery UI
|
318 |
* TWEAK: Premium Version Links Removed
|
|
|
319 |
* TWEAK: Banners Removed
|
320 |
* TWEAK: Unwanted JS/CSS Files Removed
|
321 |
|
uninstall.php
CHANGED
@@ -31,7 +31,6 @@ if (!current_user_can("manage_options")) {
|
|
31 |
$wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "mail_bank_meta");
|
32 |
// Delete options
|
33 |
delete_option("mail-bank-version-number");
|
34 |
-
delete_option("mb_tech_banker_site_id");
|
35 |
delete_option("mb_admin_notice");
|
36 |
delete_option("mail-bank-welcome-page");
|
37 |
}
|
31 |
$wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "mail_bank_meta");
|
32 |
// Delete options
|
33 |
delete_option("mail-bank-version-number");
|
|
|
34 |
delete_option("mb_admin_notice");
|
35 |
delete_option("mail-bank-welcome-page");
|
36 |
}
|
views/roles-and-capabilities/roles-and-capabilities.php
CHANGED
@@ -53,7 +53,7 @@ if (!is_user_logged_in()) {
|
|
53 |
<i class="icon-custom-user"></i>
|
54 |
<?php echo $mb_roles_and_capabilities; ?>
|
55 |
</div>
|
56 |
-
|
57 |
<?php echo $mb_upgrade_kanow_about ?> <a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-edition-text"><?php echo $mb_full_features ?></a> <?php echo $mb_chek_our; ?> <a href="https://mail-bank.tech-banker.com/backend-demos/" target="_blank" class="premium-edition-text"><?php echo $mb_online_demos; ?></a>
|
58 |
</p>
|
59 |
</div>
|
53 |
<i class="icon-custom-user"></i>
|
54 |
<?php echo $mb_roles_and_capabilities; ?>
|
55 |
</div>
|
56 |
+
<p class="premium-editions">
|
57 |
<?php echo $mb_upgrade_kanow_about ?> <a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-edition-text"><?php echo $mb_full_features ?></a> <?php echo $mb_chek_our; ?> <a href="https://mail-bank.tech-banker.com/backend-demos/" target="_blank" class="premium-edition-text"><?php echo $mb_online_demos; ?></a>
|
58 |
</p>
|
59 |
</div>
|
wp-mail-bank.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Description: Mail Bank easily configures sending emails and logging them from your WordPress site using your preferred PHPMailer or SMTP server.
|
6 |
Author: Tech Banker
|
7 |
Author URI: https://mail-bank.tech-banker.com/
|
8 |
-
Version: 3.0.
|
9 |
License: GPLv3
|
10 |
Text Domain: wp-mail-bank
|
11 |
Domain Path: /languages
|
@@ -50,7 +50,7 @@ if (!defined("tech_banker_stats_url")) {
|
|
50 |
define("tech_banker_stats_url", "http://stats.tech-banker-services.org");
|
51 |
}
|
52 |
if (!defined("mail_bank_version_number")) {
|
53 |
-
define("mail_bank_version_number", "3.0.
|
54 |
}
|
55 |
|
56 |
|
5 |
Description: Mail Bank easily configures sending emails and logging them from your WordPress site using your preferred PHPMailer or SMTP server.
|
6 |
Author: Tech Banker
|
7 |
Author URI: https://mail-bank.tech-banker.com/
|
8 |
+
Version: 3.0.14
|
9 |
License: GPLv3
|
10 |
Text Domain: wp-mail-bank
|
11 |
Domain Path: /languages
|
50 |
define("tech_banker_stats_url", "http://stats.tech-banker-services.org");
|
51 |
}
|
52 |
if (!defined("mail_bank_version_number")) {
|
53 |
+
define("mail_bank_version_number", "3.0.14");
|
54 |
}
|
55 |
|
56 |
|