Version Description
= * JavaScript fix (needed for Advanced Settings)
Download this release
Release Info
Developer | jgrietveld |
Plugin | Call Now Button |
Version | 0.1.1 |
Comparing to | |
See all releases |
Code changes from version 0.1.0 to 0.1.1
- call-now-button.js +10 -0
- call-now-button.php +3 -3
- readme.txt +9 -2
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
call-now-button.js
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function($){
|
2 |
+
$('.cnb-color-field').wpColorPicker();
|
3 |
+
$("#settings").hide();
|
4 |
+
$(".minus").hide();;
|
5 |
+
$("h4.cnb_settings").click(function() {
|
6 |
+
$("#settings").slideToggle();
|
7 |
+
$(".plus").toggle();
|
8 |
+
$(".minus").toggle();
|
9 |
+
});
|
10 |
+
});
|
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 at the bottom of your site
|
6 |
-
Version: 0.1.
|
7 |
Author: Jerry G. Rietveld
|
8 |
Author URI: http://www.jgrietveld.com
|
9 |
License: GPL2
|
@@ -27,7 +27,7 @@ License: GPL2
|
|
27 |
*/
|
28 |
?>
|
29 |
<?php
|
30 |
-
define('CNB_VERSION','0.1.
|
31 |
add_action('admin_menu', 'register_cnb_page');
|
32 |
add_action('admin_init', 'cnb_options_init');
|
33 |
|
@@ -176,4 +176,4 @@ if(get_option('cnb') && !is_admin()) {
|
|
176 |
}
|
177 |
add_action('wp_footer', 'cnb_footer');
|
178 |
}
|
179 |
-
} ?>
|
3 |
Plugin Name: Call Now Button
|
4 |
Plugin URI: http://callnowbutton.com
|
5 |
Description: Mobile visitors will see a call now button at the bottom of your site
|
6 |
+
Version: 0.1.1
|
7 |
Author: Jerry G. Rietveld
|
8 |
Author URI: http://www.jgrietveld.com
|
9 |
License: GPL2
|
27 |
*/
|
28 |
?>
|
29 |
<?php
|
30 |
+
define('CNB_VERSION','0.1.1');
|
31 |
add_action('admin_menu', 'register_cnb_page');
|
32 |
add_action('admin_init', 'cnb_options_init');
|
33 |
|
176 |
}
|
177 |
add_action('wp_footer', 'cnb_footer');
|
178 |
}
|
179 |
+
} ?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://callnowbutton.com/donate/
|
|
4 |
Tags: call, contact, customers, sell, sales, leads, convert, conversions
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 3.5.2
|
7 |
-
Stable tag: 0.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -44,6 +44,10 @@ Or:
|
|
44 |
|
45 |
== Frequently Asked Questions ==
|
46 |
|
|
|
|
|
|
|
|
|
47 |
= I don't see the button on my website but I'm looking at it with my mobile phone. Why? =
|
48 |
|
49 |
The button will only work on websites that use a responsive theme. Responsive means that the website adapts to the size of the screen it's being viewed on. Simply put, if you need to zoom in to be able to read the text of your website on your mobile phone, the plugin will not work.
|
@@ -71,6 +75,9 @@ Yes! You can easily change the color of the button and make it sit in the left o
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
74 |
= 0.1.0 =
|
75 |
* Change the color of the button
|
76 |
* Change the appearance of the button
|
@@ -78,4 +85,4 @@ Yes! You can easily change the color of the button and make it sit in the left o
|
|
78 |
* Limit the appearance to specific pages
|
79 |
|
80 |
= 0.0.1 =
|
81 |
-
* First time launch
|
4 |
Tags: call, contact, customers, sell, sales, leads, convert, conversions
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 3.5.2
|
7 |
+
Stable tag: 0.1.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
44 |
|
45 |
== Frequently Asked Questions ==
|
46 |
|
47 |
+
= Where can I enter my phone number? =
|
48 |
+
|
49 |
+
In the Settings section on your WordPress Dashboard you'll find a new addition: Call Now Button. Click on it to go to the plugin settings.
|
50 |
+
|
51 |
= I don't see the button on my website but I'm looking at it with my mobile phone. Why? =
|
52 |
|
53 |
The button will only work on websites that use a responsive theme. Responsive means that the website adapts to the size of the screen it's being viewed on. Simply put, if you need to zoom in to be able to read the text of your website on your mobile phone, the plugin will not work.
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= 0.1.1 =
|
79 |
+
* JavaScript fix (needed for Advanced Settings)
|
80 |
+
|
81 |
= 0.1.0 =
|
82 |
* Change the color of the button
|
83 |
* Change the appearance of the button
|
85 |
* Limit the appearance to specific pages
|
86 |
|
87 |
= 0.0.1 =
|
88 |
+
* First time launch
|
screenshot-1.png
DELETED
Binary file
|
screenshot-2.png
DELETED
Binary file
|