Version Description
Download this release
Release Info
Developer | buttonizer |
Plugin | Smart Floating / Sticky Buttons – Call, Sharing, Chat Widgets & More – Buttonizer |
Version | 1.5.2 |
Comparing to | |
See all releases |
Code changes from version 1.5.1 to 1.5.2
- buttonizer.php +2 -2
- classes/Admin/Admin.php +0 -22
- readme.txt +1 -1
buttonizer.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Buttonizer - Smart Floating Action Button
|
4 |
Plugin URI: https://buttonizer.pro
|
5 |
Description: The Buttonizer is a new way to give a boost to your number of interactions, actions and conversions from your website visitor by adding one or multiple Customizable Smart Floating Button in the corner of your website.
|
6 |
-
Version: 1.5.
|
7 |
Author: Buttonizer
|
8 |
Author URI: https://buttonizer.pro
|
9 |
License: GPL2
|
@@ -34,7 +34,7 @@ define('BUTTONIZER_NAME', 'buttonizer');
|
|
34 |
define('BUTTONIZER_DIR', dirname(__FILE__));
|
35 |
define('BUTTONIZER_SLUG', basename(BUTTONIZER_DIR));
|
36 |
define('BUTTONIZER_PLUGIN_DIR', __FILE__ );
|
37 |
-
define('BUTTONIZER_VERSION','1.5.
|
38 |
|
39 |
# No script kiddies
|
40 |
defined( 'ABSPATH' ) or die('No script kiddies please!');
|
3 |
Plugin Name: Buttonizer - Smart Floating Action Button
|
4 |
Plugin URI: https://buttonizer.pro
|
5 |
Description: The Buttonizer is a new way to give a boost to your number of interactions, actions and conversions from your website visitor by adding one or multiple Customizable Smart Floating Button in the corner of your website.
|
6 |
+
Version: 1.5.2
|
7 |
Author: Buttonizer
|
8 |
Author URI: https://buttonizer.pro
|
9 |
License: GPL2
|
34 |
define('BUTTONIZER_DIR', dirname(__FILE__));
|
35 |
define('BUTTONIZER_SLUG', basename(BUTTONIZER_DIR));
|
36 |
define('BUTTONIZER_PLUGIN_DIR', __FILE__ );
|
37 |
+
define('BUTTONIZER_VERSION','1.5.2');
|
38 |
|
39 |
# No script kiddies
|
40 |
defined( 'ABSPATH' ) or die('No script kiddies please!');
|
classes/Admin/Admin.php
CHANGED
@@ -152,7 +152,6 @@ class Admin {
|
|
152 |
$this->register_buttonizer_page_categories();
|
153 |
$this->register_buttonizer_opening_settings();
|
154 |
$this->register_buttonizer_video();
|
155 |
-
$this->register_buttonizer_FreePremium();
|
156 |
$this->register_buttonizer_reset_everything();
|
157 |
}
|
158 |
|
@@ -257,8 +256,6 @@ class Admin {
|
|
257 |
|
258 |
echo '<a href="?page=Buttonizer&tab=buttonizer_general_settings#buttonizer-tour" class="nav-tab" style="float: right; border: 0; color:#F08419; background: none; outline: none !important;" id="take-the-tour">Take the tour</a>';
|
259 |
|
260 |
-
echo '<a href="?page=Buttonizer&tab=buttonizer_freePremium" class="nav-tab" style="float: right; border: 0; color:; background: none; outline: none !important;" id="take-the-tour">Free premium</a>';
|
261 |
-
|
262 |
echo '</h1>';
|
263 |
}
|
264 |
|
@@ -318,21 +315,6 @@ class Admin {
|
|
318 |
);
|
319 |
}
|
320 |
|
321 |
-
function register_buttonizer_freePremium()
|
322 |
-
{
|
323 |
-
|
324 |
-
|
325 |
-
register_setting('buttonizer_freePremium', 'buttonizer_freePremium');
|
326 |
-
|
327 |
-
// FAB Button Settings
|
328 |
-
add_settings_section(
|
329 |
-
'buttonizer_freePremium', // ID
|
330 |
-
'Earn your premium ', // Title
|
331 |
-
array($this, 'getPageFreePremium'), // Callback
|
332 |
-
'buttonizer_freePremium' // Page
|
333 |
-
);
|
334 |
-
}
|
335 |
-
|
336 |
public function getPageGeneralSettings() {
|
337 |
require BUTTONIZER_DIR . '/classes/Admin/General.php';
|
338 |
|
@@ -364,10 +346,6 @@ class Admin {
|
|
364 |
require BUTTONIZER_DIR . '/views/Video.php';
|
365 |
}
|
366 |
|
367 |
-
public function getPageFreePremium(){
|
368 |
-
require BUTTONIZER_DIR . '/views/FreePremium.php';
|
369 |
-
}
|
370 |
-
|
371 |
/* Buttonizer Page Categories */
|
372 |
private function register_buttonizer_page_categories() {
|
373 |
$this->aPluginTabs['buttonizer_page_categories'] = __('Page rules', BUTTONIZER_SLUG);
|
152 |
$this->register_buttonizer_page_categories();
|
153 |
$this->register_buttonizer_opening_settings();
|
154 |
$this->register_buttonizer_video();
|
|
|
155 |
$this->register_buttonizer_reset_everything();
|
156 |
}
|
157 |
|
256 |
|
257 |
echo '<a href="?page=Buttonizer&tab=buttonizer_general_settings#buttonizer-tour" class="nav-tab" style="float: right; border: 0; color:#F08419; background: none; outline: none !important;" id="take-the-tour">Take the tour</a>';
|
258 |
|
|
|
|
|
259 |
echo '</h1>';
|
260 |
}
|
261 |
|
315 |
);
|
316 |
}
|
317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
public function getPageGeneralSettings() {
|
319 |
require BUTTONIZER_DIR . '/classes/Admin/General.php';
|
320 |
|
346 |
require BUTTONIZER_DIR . '/views/Video.php';
|
347 |
}
|
348 |
|
|
|
|
|
|
|
|
|
349 |
/* Buttonizer Page Categories */
|
350 |
private function register_buttonizer_page_categories() {
|
351 |
$this->aPluginTabs['buttonizer_page_categories'] = __('Page rules', BUTTONIZER_SLUG);
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Buy plugin: https://buttonizer.pro
|
|
4 |
Tags: Conversion, action button, call, marketing, Social Sharing
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.9.4
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Tags: Conversion, action button, call, marketing, Social Sharing
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.9.4
|
7 |
+
Stable tag: 1.5.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|