WpDevArt Facebook Like Box Widget - Version 0.7.32

Version Description

  • Edited some texts.

Wordpress Facebook like box step by step guide

Adding Facebook like box to your sidebar.

Install the plugin and add Facebook like box widget to your sidebar. Then set widget Like Box options. That's all, now your users can see your Facebook like box on your widget.

Adding Facebook like box in posts/pages using shortcode button.

For adding Facebook like box in your pages/posts you just need to click on "Add like box" shorcode button from your pages/posts and add Facebook like box.

Adding Facebook like box Popup and Sticky Facebook box.

After plugin install you need to click on "Like box" submenu from your admin panel menu. Then just set up options for Facebook like box Popup and Sticky Facebook box.

Facebook like box main options

  • Page ID: - Type here your Facebook like box page url(without https://www.facebook.com/, if your Facebook page url is https://www.facebook.com/uefacom then type here just uefacom).
  • Like box Animation - Choose Facebook like box Animation type
  • Show/Hide Like box border - Show/Hide Facebook like box border
  • Like box Border color - Type the Border Color of your Facebook Like box
  • Show/Hide latest posts - Show/Hide the latest posts from your Facebook Like box
  • Like box Width - Type Facebook Like box width
  • Like box Height - Type Facebook Like box height
  • Like box header - Show/Hide the Facebook Like box header
  • Show/Hide Friends Faces - Choose to Show/Hide Friends Faces
  • Select Like box Header size - Select Like box Header size
  • Show/hide Like box cover photo - Choose to show/hide Like box cover photo
  • Like box language - Type the Facebook Like box language code

Facebook like box Popup options

  • Enable/Disable popup - Select Enable/Disable to show or hide popup
  • Display Like box popup on - Select where to display the like box popup
  • Popup display periodicity - Select the popup display periodicity
  • Time to show Popup - Type the time when Like box popup will appear
  • Popup width - Type here the popup width
  • Popup height - Type here the popup height
  • Popup Title - Type here the popup title
  • Popup Title color - Type here the title color
  • Popup Title Font family - Choose the title Font family
  • Page ID - Type here your Facebook like box page url(without https://www.facebook.com/, if your Facebook page url is https://www.facebook.com/uefacom then type here just uefacom)
  • Show/Hide border - Show/Hide Facebook like box border
  • Border color - Type the Border Color of your Facebook Like box
  • Show/Hide latest posts - Show/Hide the latest posts from your Facebook Like box
  • Show/Hide Friends Faces - Choose to Show/Hide Friends Faces
  • Select Like box Header size - Select Like box Header size
  • Show/hide Like box cover photo - Choose to show/hide Like box cover photo
  • Like box language - Type the Facebook Like box language code

Sticky box options

  • Enable/Disable Sticky box - Select Enable/Disable to show or hide Sticky box
  • Display Sticky box on - Select where to display the Sticky box
  • Sticky box position - Select the Sticky box position
  • Sticky box height - Select the Sticky box height
  • Page ID - Type here your Facebook like box page url(without https://www.facebook.com/, if your Facebook page url is https://www.facebook.com/uefacom then type here just uefacom)
  • Sticky box width - Type here the Sticky box width
  • Sticky box height - Type here the Sticky box width
  • Sticky box button bg color - Type here the Sticky box button background color
  • Sticky box border color - Type here the Sticky box border color
  • Sticky box Title - Type here the Sticky box title
  • Sticky box Title color - Select the Sticky box title color.
  • Sticky box Title Font family - Choose the Sticky box Title Font family
  • Show/Hide Friends Faces - Choose to Show/Hide Friends Faces
  • Select Like box Header size - Select Like box Header size
  • Show/hide Like box cover photo - Choose to show/hide Like box cover photo
  • Show/Hide latest posts - Show/Hide the latest posts from your Facebook Like box
  • Like box language - Type the Facebook Like box language code

The Best Offer From WpDevArt

You can check the best offer page here- Best Price

Dear users, we also recommend you to take a look for this useful plugins - WordPress Coming Soon, WordPress booking calendar, WordPress Poll plugin, WordPress Countdown plugin, WordPress Facebook comments, WordPress lightbox .

Download this release

Release Info

Developer smplug-in
Plugin Icon 128x128 WpDevArt Facebook Like Box Widget
Version 0.7.32
Comparing to
See all releases

Code changes from version 0.7.31 to 0.7.32

includes/front_end.php CHANGED
@@ -99,7 +99,7 @@ class like_box_front_end{
99
  'iframe_id' => 'like_box_popup',
100
  'profile_id' => $this->params['like_box_profile_id'],
101
  'width' => (int)$this->params['like_box_width'], // Maximum width
102
- 'height' => (int)$this->params['like_box_height'],// Maximum height
103
  'show_border' => 'show',
104
  'border_color' => '#FFF',
105
  'header' => $this->params['like_box_header'], // Like Box Header type
@@ -222,11 +222,11 @@ class like_box_front_end{
222
  'iframe_id' => 'like_box_slideup',
223
  'profile_id' => $this->params['like_box_sidebar_slide_profile_id'],
224
  'width' => (int)$this->params['like_box_sidebar_slide_width'], // Maximum width
225
- 'height' => (int)$this->params['like_box_sidebar_slide_height'],// Maximum height
226
  'show_border' => 'hide',
227
  'border_color' => '#FFFFF',
228
  'header' => $this->params['like_box_sidebar_slide_header'], // Header type
229
- 'show_cover_photo'=> $this->params['like_box_sidebar_slide_cover_photo'], //header cover photo
230
  'connections' => $this->params['like_box_sidebar_slide_connections'],// Show facebook faces
231
  'stream' => 'hide',
232
  'animation_efect'=>'none',
99
  'iframe_id' => 'like_box_popup',
100
  'profile_id' => $this->params['like_box_profile_id'],
101
  'width' => (int)$this->params['like_box_width'], // Maximum width
102
+ 'height' => (int)$this->params['like_box_height'],// Height
103
  'show_border' => 'show',
104
  'border_color' => '#FFF',
105
  'header' => $this->params['like_box_header'], // Like Box Header type
222
  'iframe_id' => 'like_box_slideup',
223
  'profile_id' => $this->params['like_box_sidebar_slide_profile_id'],
224
  'width' => (int)$this->params['like_box_sidebar_slide_width'], // Maximum width
225
+ 'height' => (int)$this->params['like_box_sidebar_slide_height'],// Height
226
  'show_border' => 'hide',
227
  'border_color' => '#FFFFF',
228
  'header' => $this->params['like_box_sidebar_slide_header'], // Header type
229
+ 'show_cover_photo'=> $this->params['like_box_sidebar_slide_cover_photo'], // Header cover photo
230
  'connections' => $this->params['like_box_sidebar_slide_connections'],// Show facebook faces
231
  'stream' => 'hide',
232
  'animation_efect'=>'none',
includes/library.php CHANGED
@@ -24,7 +24,7 @@ class like_box_setting{
24
  'iframe_id' => 'facbook_like_box_'.self::$id_for_iframe,
25
  'profile_id' => '',
26
  'width' => '300', // Maximum width
27
- 'height' => '550',// Maximum height
28
  'show_border' => 'show',
29
  'border_color' => '#FFFFF',
30
  'header' => 'small', // Header type
24
  'iframe_id' => 'facbook_like_box_'.self::$id_for_iframe,
25
  'profile_id' => '',
26
  'width' => '300', // Maximum width
27
+ 'height' => '550',// Height
28
  'show_border' => 'show',
29
  'border_color' => '#FFFFF',
30
  'header' => 'small', // Header type
includes/widget.php CHANGED
@@ -19,7 +19,7 @@ class like_box_facbook extends WP_Widget {
19
  $title = $instance['title'];
20
  $params_of_widget=array(
21
  'profile_id' => $instance['profile_id'],
22
- 'width' => (int)$instance['width'], // Width
23
  'height' => (int)$instance['height'],// Height
24
  'show_border' => 'show',
25
  'border_color' => '#FFF',
@@ -59,7 +59,7 @@ class like_box_facbook extends WP_Widget {
59
 
60
  }
61
 
62
- /* Admin page options */
63
  function form($instance) {
64
 
65
  $defaults = array( 'title' => '','profile_id' => '','stream' => 'true', 'connections' => 'show','width' => '300','height' => '550','header' => 'small','cover_photo' => 'show','locale' => 'en_US');
19
  $title = $instance['title'];
20
  $params_of_widget=array(
21
  'profile_id' => $instance['profile_id'],
22
+ 'width' => (int)$instance['width'], // Maximum Width
23
  'height' => (int)$instance['height'],// Height
24
  'show_border' => 'show',
25
  'border_color' => '#FFF',
59
 
60
  }
61
 
62
+ /* Admin page options code */
63
  function form($instance) {
64
 
65
  $defaults = array( 'title' => '','profile_id' => '','stream' => 'true', 'connections' => 'show','width' => '300','height' => '550','header' => 'small','cover_photo' => 'show','locale' => 'en_US');
like-box.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Facebook Like Box
4
  Plugin URI: https://wordpress.org/plugins/like-box
5
  Description: Facebook like box plugin will help you to display Facebook like box on your wesite, just add Facebook Like box widget to your sidebar and use it. Also you can use Facebook Like box on your pages/posts and create Facebook Like box popup for your website.
6
- Version: 0.7.31
7
  Author: smplug-in
8
  Author URI: http://wpdevart.com/wordpress-facebook-like-box-plugin
9
  License: GPL/GPL3
3
  Plugin Name: Facebook Like Box
4
  Plugin URI: https://wordpress.org/plugins/like-box
5
  Description: Facebook like box plugin will help you to display Facebook like box on your wesite, just add Facebook Like box widget to your sidebar and use it. Also you can use Facebook Like box on your pages/posts and create Facebook Like box popup for your website.
6
+ Version: 0.7.33
7
  Author: smplug-in
8
  Author URI: http://wpdevart.com/wordpress-facebook-like-box-plugin
9
  License: GPL/GPL3
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Facebook Like Box ===
2
  Contributors: smplug-in
3
- Tags: Facebook, facebook badge, facebook connect, Facebook fan page, facebook group, facebook integration, facebook like box, Facebook like widget, facebook meta, facebook meta tag, Facebook Open Graph, Facebook Page, facebook platform, facebook plugin, facebook recommend, facebook share, facebook sidebar, facebook style, facebook wall, Facebook Widget, friends, google +1, google plus, google plus one, Like, like box, open graph, page, plugin, post to facebook, sharebar, sidebar, social, Social Plugins, social profiles, social share, social sidebar, wordpress like, seo, meta, Facebook like box widget, facebook like, facebook like button, facebook button, facebook facepile, like box facebook, like box widget, facebook likebox, facebook like box shortcode, likebox, wordpress facebook like box, facebook like box in PopUp, facebook likebox widget, nice facebook like box, custom facebook likebox, rt facebook like box, advanced responsive facebook likebox, fb like box, facebook like box shortcodes
4
  Requires at least: 2.9
5
  Tested up to: 4.6.1
6
- Stable tag: 0.7.31
7
 
8
  Facebook like box plugin will help you to display Facebook like box on your wesite, just add Facebook Like box widget to your sidebar and use it. Also you can use Facebook Like box on your pages/posts and create Facebook Like box popup for your website.
9
 
@@ -315,6 +315,10 @@ Yes dear users, you need to pay only one time for our pro version.
315
 
316
  * Made changes in code comments.
317
 
 
 
 
 
318
  ==Wordpress Facebook like box step by step guide==
319
 
320
  ### Adding Facebook like box to your sidebar.
1
  === Facebook Like Box ===
2
  Contributors: smplug-in
3
+ Tags: Facebook, facebook badge, facebook connect, Facebook fan page, facebook group, facebook integration, facebook like box, Facebook like widget, facebook meta, facebook meta tag, Facebook Open Graph, Facebook Page, facebook platform, facebook plugin, facebook recommend, facebook share, facebook sidebar, facebook style, facebook wall, Facebook Widget, friends, google +1, google plus, Like, like box, open graph, page, plugin, post to facebook, sharebar, sidebar, social, Social Plugins, social profiles, social share, social sidebar, wordpress like, seo, meta, Facebook like box widget, facebook like, facebook like button, facebook button, facebook facepile, like box facebook, like box widget, facebook likebox, facebook like box shortcode, likebox, wordpress facebook like box, facebook like box in PopUp, facebook likebox widget, nice facebook like box, custom facebook likebox, rt facebook like box, advanced responsive facebook likebox, fb like box, facebook like box shortcodes
4
  Requires at least: 2.9
5
  Tested up to: 4.6.1
6
+ Stable tag: 0.7.32
7
 
8
  Facebook like box plugin will help you to display Facebook like box on your wesite, just add Facebook Like box widget to your sidebar and use it. Also you can use Facebook Like box on your pages/posts and create Facebook Like box popup for your website.
9
 
315
 
316
  * Made changes in code comments.
317
 
318
+ = 0.7.32 =
319
+
320
+ * Edited some texts.
321
+
322
  ==Wordpress Facebook like box step by step guide==
323
 
324
  ### Adding Facebook like box to your sidebar.