Version Description
= * Small JS fix
Download this release
Release Info
Developer | jgrietveld |
Plugin | Call Now Button |
Version | 0.3.5 |
Comparing to | |
See all releases |
Code changes from version 0.3.4 to 0.3.5
- call-now-button.php +4 -3
- readme.txt +4 -1
call-now-button.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Call Now Button
|
4 |
Plugin URI: http://callnowbutton.com
|
5 |
Description: Mobile visitors will see a call now button fixed at the bottom of your site
|
6 |
-
Version: 0.3.
|
7 |
Author: Jerry Rietveld
|
8 |
Author URI: http://www.jgrietveld.com
|
9 |
License: GPL2
|
@@ -26,7 +26,7 @@ License: GPL2
|
|
26 |
*/
|
27 |
?>
|
28 |
<?php
|
29 |
-
define('CNB_VERSION','0.3.
|
30 |
define('CNB_BASENAME', plugin_basename( __FILE__ ) );
|
31 |
define('CNB_BASEFOLDER', plugin_basename( dirname( __FILE__ ) ) );
|
32 |
define('CNB_FILENAME', str_replace( CNB_BASEFOLDER.'/', '', CNB_BASENAME ) );
|
@@ -36,6 +36,7 @@ add_action('admin_init', 'cnb_options_init');
|
|
36 |
$cnb_changelog =
|
37 |
array(
|
38 |
array(
|
|
|
39 |
'3.4' => 'Option to resize your button and change where it sits in the stack order (z-index).',
|
40 |
'3.3' => 'Some small improvements.',
|
41 |
'3.2' => 'Option to hide icon in text button, small bug fixes.',
|
@@ -57,7 +58,7 @@ $cnb_options['hideIcon'] = isset($cnb_options['hideIcon']) ? $cnb_options['hideI
|
|
57 |
|
58 |
$plugin_title = apply_filters( 'cnb_plugin_title', 'Call Now Button');
|
59 |
|
60 |
-
if(isset($_GET['page']) && $_GET['page']
|
61 |
add_action( 'admin_enqueue_scripts', 'cnb_enqueue_color_picker' ); // add the color picker
|
62 |
}
|
63 |
|
3 |
Plugin Name: Call Now Button
|
4 |
Plugin URI: http://callnowbutton.com
|
5 |
Description: Mobile visitors will see a call now button fixed at the bottom of your site
|
6 |
+
Version: 0.3.5
|
7 |
Author: Jerry Rietveld
|
8 |
Author URI: http://www.jgrietveld.com
|
9 |
License: GPL2
|
26 |
*/
|
27 |
?>
|
28 |
<?php
|
29 |
+
define('CNB_VERSION','0.3.5');
|
30 |
define('CNB_BASENAME', plugin_basename( __FILE__ ) );
|
31 |
define('CNB_BASEFOLDER', plugin_basename( dirname( __FILE__ ) ) );
|
32 |
define('CNB_FILENAME', str_replace( CNB_BASEFOLDER.'/', '', CNB_BASENAME ) );
|
36 |
$cnb_changelog =
|
37 |
array(
|
38 |
array(
|
39 |
+
'3.5' => 'Small JS fix',
|
40 |
'3.4' => 'Option to resize your button and change where it sits in the stack order (z-index).',
|
41 |
'3.3' => 'Some small improvements.',
|
42 |
'3.2' => 'Option to hide icon in text button, small bug fixes.',
|
58 |
|
59 |
$plugin_title = apply_filters( 'cnb_plugin_title', 'Call Now Button');
|
60 |
|
61 |
+
if(isset($_GET['page']) && strpos($_GET['page'], 'call-now-button') !== false) {
|
62 |
add_action( 'admin_enqueue_scripts', 'cnb_enqueue_color_picker' ); // add the color picker
|
63 |
}
|
64 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://callnowbutton.com/donate/
|
|
4 |
Tags: call, contact, customers, sell, sales, leads, convert, conversions, call now button
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 5.0
|
7 |
-
Stable tag: 0.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -98,6 +98,9 @@ Yes, this is coming soon. We're currently looking for testers so if you want to
|
|
98 |
|
99 |
== Changelog ==
|
100 |
|
|
|
|
|
|
|
101 |
= 0.3.4 =
|
102 |
* Bug fix for function causing 500 error on some versions of PHP
|
103 |
* Added feature to increase or decrease the button size
|
4 |
Tags: call, contact, customers, sell, sales, leads, convert, conversions, call now button
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 5.0
|
7 |
+
Stable tag: 0.3.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
98 |
|
99 |
== Changelog ==
|
100 |
|
101 |
+
= 0.3.5 =
|
102 |
+
* Small JS fix
|
103 |
+
|
104 |
= 0.3.4 =
|
105 |
* Bug fix for function causing 500 error on some versions of PHP
|
106 |
* Added feature to increase or decrease the button size
|