by Push Labs
1 (0 reviews)
Call Button
A modern, easy to use call button that shoots to increase conversions and drive sales!
Tested up to WP 4.8 (Current: 6.9)
v1.0
Current Version v1.0
Updated 8 years ago
Last Update on 03 Jul, 2017
Synced 14 hours ago
Last Synced on
Rank
#27,882
—
No change
Active Installs
10+
-56.5%
KW Avg Position
N/A
—
No change
Downloads
2.2K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 20
10+
20+
2,713
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 1 more installs to reach 20+
Rank Changes
Current
#27,882
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0
- Last Updated
- Jul 03, 2017
- Requires WP
- 3.8.0+
- Tested Up To
- 4.8
- PHP Version
- N/A
- Author
- Push Labs
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Call Button
Upload call-button to the /wp-content/plugins/ directory
Activate the plugin through the 'Plugins' menu in WordPress
Fill in the settings on the “Call Button” page under settings.
Activate the plugin through the 'Plugins' menu in WordPress
Fill in the settings on the “Call Button” page under settings.
/**
* Push Labs Call Button Post types
*
* @author Push Labs
*/
function themeprefix_callbutton_post_types( $post_types ) {
$post_types = array( 'post', 'page' );
return $post_types;
}
add_filter( 'pushlabs_callbutton_post_types', 'themeprefix_callbutton_post_types' );
* Push Labs Call Button Post types
*
* @author Push Labs
*/
function themeprefix_callbutton_post_types( $post_types ) {
$post_types = array( 'post', 'page' );
return $post_types;
}
add_filter( 'pushlabs_callbutton_post_types', 'themeprefix_callbutton_post_types' );
/**
* Push Labs Call Button Icon Class
*
* @author Push Labs
*/
function themeprefix_callbutton_icon_class( $icon_class ) {
// Call Button uses Font Awesome. You can use any of their icons in this field.
$icon_class = 'fa-phone';
return $icon_class;
}
add_filter( 'pushlabs_callbutton_icon_class', 'themeprefix_callbutton_icon_class' );
How do I add my phone number?
To add your phone number, go to the Settings > Call Button page and enter your number. Enter only the numbers, special characters are not allowed.
I already have Font Awesome Installed! Can I dequeue the reference Call Button uses?
Sure thing! If you already have Font Awesome installed and don't want to use Call Button's, you can use this filter to dequeue it.
/**
* Push Labs Call Button Dequeue Font Awesome
*
* @author Push Labs
*/
function themeprefix_callbutton_dequeue_fontawesome( $dequeue ) {
// True or false
$dequeue = true;
return $dequeue;
}
add_filter( 'pushlabs_callbutton_dequeue_fontawesome', 'themeprefix_callbutton_dequeue_fontawesome' );
* Push Labs Call Button Icon Class
*
* @author Push Labs
*/
function themeprefix_callbutton_icon_class( $icon_class ) {
// Call Button uses Font Awesome. You can use any of their icons in this field.
$icon_class = 'fa-phone';
return $icon_class;
}
add_filter( 'pushlabs_callbutton_icon_class', 'themeprefix_callbutton_icon_class' );
How do I add my phone number?
To add your phone number, go to the Settings > Call Button page and enter your number. Enter only the numbers, special characters are not allowed.
I already have Font Awesome Installed! Can I dequeue the reference Call Button uses?
Sure thing! If you already have Font Awesome installed and don't want to use Call Button's, you can use this filter to dequeue it.
/**
* Push Labs Call Button Dequeue Font Awesome
*
* @author Push Labs
*/
function themeprefix_callbutton_dequeue_fontawesome( $dequeue ) {
// True or false
$dequeue = true;
return $dequeue;
}
add_filter( 'pushlabs_callbutton_dequeue_fontawesome', 'themeprefix_callbutton_dequeue_fontawesome' );