WpDevArt Facebook Like Box Widget - Version 0.7.27

Version Description

Download this release

Release Info

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

Code changes from version 0.7.26 to 0.7.27

includes/admin_menu.php CHANGED
@@ -31,7 +31,7 @@ class like_box_admin_menu{
31
  $this->plugin_url=trailingslashit(dirname(plugins_url('',__FILE__)));
32
 
33
 
34
- // Posts/Pages insert button
35
  add_action('media_buttons_context', array($this,'like_box_button'));
36
  add_action( 'wp_ajax_like_box_window_manager', array($this,'like_box_window_insert_content') );
37
 
@@ -147,7 +147,7 @@ class like_box_admin_menu{
147
  </tr>
148
  <tr>
149
  <td>
150
- Show Users Faces <span title="Select to Show/Hide Users Faces" class="desription_class">?</span>
151
  </td>
152
  <td>
153
  <select id="like_box_connections">
31
  $this->plugin_url=trailingslashit(dirname(plugins_url('',__FILE__)));
32
 
33
 
34
+ // Insert button
35
  add_action('media_buttons_context', array($this,'like_box_button'));
36
  add_action( 'wp_ajax_like_box_window_manager', array($this,'like_box_window_insert_content') );
37
 
147
  </tr>
148
  <tr>
149
  <td>
150
+ Show Users Faces <span title="Show or Hide Users Faces" class="desription_class">?</span>
151
  </td>
152
  <td>
153
  <select id="like_box_connections">
includes/front_end.php CHANGED
@@ -52,7 +52,7 @@ class like_box_front_end{
52
  }
53
 
54
  }
55
- /*###################### CONNECTING TO DATABASE ##################*/
56
  private function generete_params(){
57
 
58
  foreach($this->databese_parametrs as $param_array_key => $param_value){
@@ -98,13 +98,13 @@ class like_box_front_end{
98
  $iframe_params=array(
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'], // header type
106
- 'show_cover_photo'=> $this->params['like_box_cover_photo'], //header cover photo
107
- 'connections' => $this->params['like_box_connections'],// show facebook user faces
108
  'stream' => 'hide',
109
  'animation_efect'=>'none',
110
  'locale' => $this->params['like_box_locale'], // languages
52
  }
53
 
54
  }
55
+ /*###################### CONNECTING TO THE DATABASE ##################*/
56
  private function generete_params(){
57
 
58
  foreach($this->databese_parametrs as $param_array_key => $param_value){
98
  $iframe_params=array(
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
106
+ 'show_cover_photo'=> $this->params['like_box_cover_photo'], //Header cover photo
107
+ 'connections' => $this->params['like_box_connections'],// Show facebook user faces
108
  'stream' => 'hide',
109
  'animation_efect'=>'none',
110
  'locale' => $this->params['like_box_locale'], // languages
includes/widget.php CHANGED
@@ -19,16 +19,16 @@ 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',
26
- 'header' => $instance['header'], // header type
27
- 'show_cover_photo'=> $instance['cover_photo'], //header cover photo
28
- 'connections' => $instance['connections'],// show facebook users faces
29
  'stream' => 'hide',
30
  'animation_efect'=> 'none',
31
- 'locale' => $instance['locale'], // languages
32
 
33
  );
34
  // Before 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',
26
+ 'header' => $instance['header'], // Like Box Header type
27
+ 'show_cover_photo'=> $instance['cover_photo'], //Like Box Header cover photo
28
+ 'connections' => $instance['connections'],// Show facebook users faces
29
  'stream' => 'hide',
30
  'animation_efect'=> 'none',
31
+ 'locale' => $instance['locale'], // Languages
32
 
33
  );
34
  // Before widget //
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.26
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.27
7
  Author: smplug-in
8
  Author URI: http://wpdevart.com/wordpress-facebook-like-box-plugin
9
  License: GPL/GPL3
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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, like box sidebox
4
  Requires at least: 2.9
5
  Tested up to: 4.3
6
- Stable tag: 0.7.26
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
 
@@ -287,6 +287,10 @@ You need to select the .zip file only, there is no need to extract the zip file,
287
 
288
  * Change some options names and descriptions.
289
 
 
 
 
 
290
  ==Wordpress Facebook like box step by step guide==
291
 
292
  ### Adding Facebook like box to your sidebar.
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, like box sidebox
4
  Requires at least: 2.9
5
  Tested up to: 4.3
6
+ Stable tag: 0.7.27
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
 
287
 
288
  * Change some options names and descriptions.
289
 
290
+ = 0.7.26 =
291
+
292
+ * Fixed issues.
293
+
294
  ==Wordpress Facebook like box step by step guide==
295
 
296
  ### Adding Facebook like box to your sidebar.