Version Description
- Tested WP 5.3
- Fixed - Removed comment that caused a warning for some users.
- Fixed - Another fix for trash view.
Download this release
Release Info
Developer | basszje |
Plugin | WordPress Button Plugin MaxButtons |
Version | 7.13.2 |
Comparing to | |
See all releases |
Code changes from version 7.13.1 to 7.13.2
- classes/controller.php +1 -1
- classes/maxbuttons-admin-helper.php +0 -2
- maxbuttons.php +3 -3
- readme.txt +10 -3
classes/controller.php
CHANGED
@@ -46,7 +46,7 @@ abstract class MaxController
|
|
46 |
|
47 |
public function getListLink($view = 'all', $args = array() )
|
48 |
{
|
49 |
-
$link = admin_url() . 'admin.php?page=maxbuttons-
|
50 |
$link = add_query_arg($args,$link);
|
51 |
return $link;
|
52 |
|
46 |
|
47 |
public function getListLink($view = 'all', $args = array() )
|
48 |
{
|
49 |
+
$link = admin_url() . 'admin.php?page=maxbuttons-controller&view=' . $view;
|
50 |
$link = add_query_arg($args,$link);
|
51 |
return $link;
|
52 |
|
classes/maxbuttons-admin-helper.php
CHANGED
@@ -26,8 +26,6 @@ class maxAdmin
|
|
26 |
|
27 |
<?php printf(__('Upgrade to MaxButtons Pro today! %sClick Here%s', 'maxbuttons'), '<a class="simple-btn" href="' . $url . '&utm_source=mbf-dash' . $version . '&utm_medium=mbf-plugin&utm_content=click-here&utm_campaign=cart' . $version . '" target="_blank">', '</a>' ) ?>
|
28 |
|
29 |
-
<?php// $twitlink = 'https://twitter.com/intent/user?original_referer=http%3A%2F%2Flocal.max%2Fwp-admin%2Fadmin.php%3Fpage%3Dmaxbuttons&ref_src=twsrc%5Etfw&region=count_link&screen_name=maxfoundry&tw_p=followbutton';
|
30 |
-
?>
|
31 |
|
32 |
<?php
|
33 |
}
|
26 |
|
27 |
<?php printf(__('Upgrade to MaxButtons Pro today! %sClick Here%s', 'maxbuttons'), '<a class="simple-btn" href="' . $url . '&utm_source=mbf-dash' . $version . '&utm_medium=mbf-plugin&utm_content=click-here&utm_campaign=cart' . $version . '" target="_blank">', '</a>' ) ?>
|
28 |
|
|
|
|
|
29 |
|
30 |
<?php
|
31 |
}
|
maxbuttons.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MaxButtons
|
4 |
Plugin URI: http://maxbuttons.com
|
5 |
Description: The best WordPress button generator. This is the free version; the Pro version <a href="http://maxbuttons.com/?ref=mbfree">can be found here</a>.
|
6 |
-
Version: 7.13.
|
7 |
Author: Max Foundry
|
8 |
Author URI: http://maxfoundry.com
|
9 |
Text Domain: maxbuttons
|
@@ -16,9 +16,9 @@ namespace MaxButtons;
|
|
16 |
if (! defined('MAXBUTTONS_ROOT_FILE'))
|
17 |
define("MAXBUTTONS_ROOT_FILE", __FILE__);
|
18 |
if (! defined('MAXBUTTONS_VERSION_NUM'))
|
19 |
-
define('MAXBUTTONS_VERSION_NUM', '7.13.
|
20 |
|
21 |
-
define('MAXBUTTONS_RELEASE',"
|
22 |
|
23 |
if (! function_exists('MaxButtons\maxbutton_double_load'))
|
24 |
{
|
3 |
Plugin Name: MaxButtons
|
4 |
Plugin URI: http://maxbuttons.com
|
5 |
Description: The best WordPress button generator. This is the free version; the Pro version <a href="http://maxbuttons.com/?ref=mbfree">can be found here</a>.
|
6 |
+
Version: 7.13.2
|
7 |
Author: Max Foundry
|
8 |
Author URI: http://maxfoundry.com
|
9 |
Text Domain: maxbuttons
|
16 |
if (! defined('MAXBUTTONS_ROOT_FILE'))
|
17 |
define("MAXBUTTONS_ROOT_FILE", __FILE__);
|
18 |
if (! defined('MAXBUTTONS_VERSION_NUM'))
|
19 |
+
define('MAXBUTTONS_VERSION_NUM', '7.13.2');
|
20 |
|
21 |
+
define('MAXBUTTONS_RELEASE',"31 October 2019");
|
22 |
|
23 |
if (! function_exists('MaxButtons\maxbutton_double_load'))
|
24 |
{
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: maxfoundry, basszje, arcware, johnbhartley
|
3 |
Tags: wordpress button plugin, share button, wordpress buttons, css3 button generator, responsive buttons, css wordpress button
|
4 |
Requires at least: 4.8
|
5 |
-
Tested up to: 5.
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 7.13.
|
8 |
|
9 |
WordPress button plugin so powerful and easy to use anyone can create beautiful buttons, share buttons and social icons.
|
10 |
|
@@ -255,9 +255,16 @@ Secondly, please use latin only characters for button name ( Basic settings) and
|
|
255 |
|
256 |
== Changelog ==
|
257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
= 7.13.1 =
|
259 |
|
260 |
-
* Fixed - Wrong redirect on copy / move to trash actions.
|
261 |
|
262 |
= 7.13 =
|
263 |
|
2 |
Contributors: maxfoundry, basszje, arcware, johnbhartley
|
3 |
Tags: wordpress button plugin, share button, wordpress buttons, css3 button generator, responsive buttons, css wordpress button
|
4 |
Requires at least: 4.8
|
5 |
+
Tested up to: 5.3
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 7.13.2
|
8 |
|
9 |
WordPress button plugin so powerful and easy to use anyone can create beautiful buttons, share buttons and social icons.
|
10 |
|
255 |
|
256 |
== Changelog ==
|
257 |
|
258 |
+
|
259 |
+
= 7.13.2 =
|
260 |
+
|
261 |
+
* Tested WP 5.3
|
262 |
+
* Fixed - Removed comment that caused a warning for some users.
|
263 |
+
* Fixed - Another fix for trash view.
|
264 |
+
|
265 |
= 7.13.1 =
|
266 |
|
267 |
+
* Fixed - Wrong redirect on copy / move to trash actions.
|
268 |
|
269 |
= 7.13 =
|
270 |
|