
A modern, easy to use call button that shoots to increase conversions and drive sales!
| Author: | Push Labs (profile at wordpress.org) |
| WordPress version required: | 3.8.0 |
| WordPress version tested: | 4.8 |
| Plugin version: | 1.0 |
| Added to WordPress repository: | 03-07-2017 |
| Last updated: | 03-07-2017
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
| Rating, %: | 0 |
| Rated by: | 0 |
| Plugin URI: | https://pushlabs.co/ |
| Total downloads: | 2 254 |
| Active installs: | 20+ |

Click to start download
|
Screenshots

Call Button Settings Page

Call Button Button Styles

Call Button Banner Styles

Call Button Color Picker

Call Button Add Your Own Text

Call Button Post/Page Metabox Settings

Call Button Example 1

Call Button Example 2
FAQ
Installation Instructions
Installation is simple.
- 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.
Is there any way to add the metabox to custom post types?
You sure can with a simple filter!
/**
* 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' );
Can I change the Icon?
Of course! This is done through a filter at the moment. Please see the code below:
/**
* 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' );
ChangeLog