WpDevArt Facebook comments - Version 1.3.0

Version Description

  • Edit some texts.

Facebook comments WordPress step by step guide

Facebook Comments plugin main options

  • APP ID - Type here your Facebook App ID
  • Title - Type here Facebook comments box title
  • Color scheme - Select Facebook comments box Color scheme
  • Title text color - Select Facebook comments box title text color
  • Title font-size - Type Facebook comments box title font-size
  • Title font family - Select Facebook comments box title font family
  • Title position - Select Facebook comments box title position
  • Display comment on - Select where to display Facebook comments
  • Comment box width - Type here the Facebook comments box width
  • Number of comments show - Type here the comments of Facebook comments to display
  • Animation effect - Select animation effect
  • Background color - Select Facebook comments background color
  • Facebook comments position -Select Facebook comments box position(before or after WordPress standard comments)
  • Facebook comments language - Type here Facebook comments language code(en_US,de_DE...)

Adding Facebook Comments plugin shortcode into pages, posts and in Php code

Here is an example of using the shortcode in posts/pages: [wpdevart_facebook_comment facebook_app_id="1638418549774901" curent_url="http://developers.facebook.com/docs/plugins/comments/" title_text="Facebook Comment" title_text_color="#000000" title_text_font_size="22" title_text_font_famely="monospace" title_text_position="left" width="100%" bg_color="#CCCCCC" animation_effect="random" locale="en_US" count_of_comments="2" ]

Here's an example of using the shortcode in PHP code: <?php echo do_shortcode('[wpdevart_facebook_comment facebook_app_id="1638418549774901" curent_url="http://developers.facebook.com/docs/plugins/comments/" title_text="Facebook Comment" title_text_color="#000000" title_text_font_size="22" title_text_font_famely="monospace" title_text_position="left" width="100%" bg_color="#CCCCCC" animation_effect="random" locale="en_US" count_of_comments="2" ]'); ?>

Here are explanation of Facebook comments shortcode attributes.

curent_url - Type the URL of a page from where you need to show Facebook comments title_text - Type here Facebook comments box title title_text_color - Select Facebook comments box title color title_text_font_size - Type Facebook comments box title font-size title_text_font_famely - Select Facebook comments box title font family title_text_position - Select Facebook comments box title position width - Type here the Facebook comments box width count_of_comments - Type here the comments of Facebook comments to display bg_color - Select Facebook comments background color animation_effect - Choose animation effect for Facebook comments box

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 YouTube, WordPress Facebook like box, WordPress lightbox .

Download this release

Release Info

Developer wpdevart
Plugin Icon 128x128 WpDevArt Facebook comments
Version 1.3.0
Comparing to
See all releases

Code changes from version 1.2.9 to 1.3.0

facebook-comment.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Wpdevart Facebook comments
4
  * Plugin URI: http://wpdevart.com/wordpress-facebook-comments-plugin/
5
  * Description: Facebook comments plugin will help you to display Facebook Comments box on your website. You can use Facebook Comments on your pages/posts.
6
- * Version: 1.2.9
7
  * Author: wpdevart
8
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
9
  */
3
  * Plugin Name: Wpdevart Facebook comments
4
  * Plugin URI: http://wpdevart.com/wordpress-facebook-comments-plugin/
5
  * Description: Facebook comments plugin will help you to display Facebook Comments box on your website. You can use Facebook Comments on your pages/posts.
6
+ * Version: 1.3.0
7
  * Author: wpdevart
8
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
9
  */
includes/admin_menu.php CHANGED
@@ -32,7 +32,7 @@ class wpdevart_comment_admin_menu{
32
  }
33
  }
34
  public function generete_html_for_wpdevart_comment_box($post){
35
- // Add a nonce field so we can check for it later.
36
  wp_nonce_field( 'wpdevar_save_post', 'wpdevart_facebook_meta_box_nonce' );
37
 
38
  /*
@@ -183,7 +183,7 @@ Also, here is another tutorial of creating App Id, you can check it - <a style="
183
  <p><strong>title_text_font_famely</strong> - Select Facebook comments box title font family</p>
184
  <p><strong>title_text_position</strong> - Select Facebook comments box title position</p>
185
  <p><strong>width</strong> - Type here the Facebook comments box width</p>
186
- <p><strong>count_of_comments</strong> - Type here the comments of Facebook comments to display</p>
187
  <p><strong>bg_color</strong> <span class="pro_feature"> (pro)</span> - Select Facebook comments background color</p>
188
  <p><strong>animation_effect</strong> <span class="pro_feature"> (pro)</span> - Select the animation effect for Facebook comments box</p>
189
 
32
  }
33
  }
34
  public function generete_html_for_wpdevart_comment_box($post){
35
+ // Add a field so we can check for it later.
36
  wp_nonce_field( 'wpdevar_save_post', 'wpdevart_facebook_meta_box_nonce' );
37
 
38
  /*
183
  <p><strong>title_text_font_famely</strong> - Select Facebook comments box title font family</p>
184
  <p><strong>title_text_position</strong> - Select Facebook comments box title position</p>
185
  <p><strong>width</strong> - Type here the Facebook comments box width</p>
186
+ <p><strong>count_of_comments</strong> - Type here the number of Facebook comments to display</p>
187
  <p><strong>bg_color</strong> <span class="pro_feature"> (pro)</span> - Select Facebook comments background color</p>
188
  <p><strong>animation_effect</strong> <span class="pro_feature"> (pro)</span> - Select the animation effect for Facebook comments box</p>
189
 
includes/front_end.php CHANGED
@@ -31,7 +31,7 @@ class wpdevart_comment_front_end{
31
 
32
 
33
  }
34
- /*###################### FUNCTION FOR CONNECTING TO DATABASE ##################*/
35
  private function generete_params(){
36
 
37
  foreach($this->databese_parametrs as $param_array_key => $param_value){
31
 
32
 
33
  }
34
+ /*###################### FUNCTION FOR CONNECTING TO THE DATABASE ##################*/
35
  private function generete_params(){
36
 
37
  foreach($this->databese_parametrs as $param_array_key => $param_value){
includes/library.php CHANGED
@@ -17,7 +17,7 @@ class wpdevart_comment_setting{
17
  public static function generete_iframe_by_array($params){
18
  self::$id_for_iframe++;
19
  $output_code='';
20
- //Iframe default parameters
21
  $defaults=array(
22
 
23
  "iframe_id" => 'wpdevar_comment_'.self::$id_for_iframe,
17
  public static function generete_iframe_by_array($params){
18
  self::$id_for_iframe++;
19
  $output_code='';
20
+ //Iframe standard parameters
21
  $defaults=array(
22
 
23
  "iframe_id" => 'wpdevar_comment_'.self::$id_for_iframe,
includes/style/admin-style.css CHANGED
@@ -51,7 +51,7 @@
51
  .switch label { cursor: pointer; }
52
  .switch input { display: none; }
53
  /*################### Admin customization grouped parameters ##############################*/
54
- /*Comments box header part styling*/
55
  #save_all_parametrs{
56
  margin-right:20px;
57
  }
@@ -253,7 +253,7 @@ button{
253
  margin-right:4px;
254
  }
255
 
256
- /*slider option*/
257
  .slider_div{
258
  width:195px !important;
259
  }
51
  .switch label { cursor: pointer; }
52
  .switch input { display: none; }
53
  /*################### Admin customization grouped parameters ##############################*/
54
+ /*Comments box header styling*/
55
  #save_all_parametrs{
56
  margin-right:20px;
57
  }
253
  margin-right:4px;
254
  }
255
 
256
+ /*slider options*/
257
  .slider_div{
258
  width:195px !important;
259
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wpdevart
3
  Tags: facebook comments, facebook comment, facebook comment notification, seo facebook comments, facebook comments import, facebook comment system, comments, comment, wordpress comment, wordpress comments, Facebook, facebook badge, facebook connect, facebook group, facebook integration, Facebook like widget, facebook meta, facebook meta tag, Facebook Open Graph, Facebook Page, facebook platform, facebook plugin, post to facebook, Facebook feed, facebook wall for wordpress, Facebook Stream, social, responsive comments, social comments, comments plugin
4
  Requires at least: 2.9
5
  Tested up to: 4.3.1
6
- Stable tag: 1.2.9
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -227,6 +227,10 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
227
 
228
  * Edit some options.
229
 
 
 
 
 
230
  ==Facebook comments WordPress step by step guide==
231
 
232
  ### Facebook Comments plugin main options
@@ -241,7 +245,7 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
241
  * Display comment on - Select where to display Facebook comments
242
  * Comment box width - Type here the Facebook comments box width
243
  * Number of comments show - Type here the comments of Facebook comments to display
244
- * Animation effect - Select the animation effect for Facebook comments box
245
  * Background color - Select Facebook comments background color
246
  * Facebook comments position -Select Facebook comments box position(before or after WordPress standard comments)
247
  * Facebook comments language - Type here Facebook comments language code(en_US,de_DE...)
@@ -265,7 +269,7 @@ title_text_position - Select Facebook comments box title position
265
  width - Type here the Facebook comments box width
266
  count_of_comments - Type here the comments of Facebook comments to display
267
  bg_color - Select Facebook comments background color
268
- animation_effect - Select the animation effect for Facebook comments box
269
 
270
  ### The Best Offer From WpDevArt
271
 
3
  Tags: facebook comments, facebook comment, facebook comment notification, seo facebook comments, facebook comments import, facebook comment system, comments, comment, wordpress comment, wordpress comments, Facebook, facebook badge, facebook connect, facebook group, facebook integration, Facebook like widget, facebook meta, facebook meta tag, Facebook Open Graph, Facebook Page, facebook platform, facebook plugin, post to facebook, Facebook feed, facebook wall for wordpress, Facebook Stream, social, responsive comments, social comments, comments plugin
4
  Requires at least: 2.9
5
  Tested up to: 4.3.1
6
+ Stable tag: 1.3.0
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
227
 
228
  * Edit some options.
229
 
230
+ = 1.3.0 =
231
+
232
+ * Edit some texts.
233
+
234
  ==Facebook comments WordPress step by step guide==
235
 
236
  ### Facebook Comments plugin main options
245
  * Display comment on - Select where to display Facebook comments
246
  * Comment box width - Type here the Facebook comments box width
247
  * Number of comments show - Type here the comments of Facebook comments to display
248
+ * Animation effect - Select animation effect
249
  * Background color - Select Facebook comments background color
250
  * Facebook comments position -Select Facebook comments box position(before or after WordPress standard comments)
251
  * Facebook comments language - Type here Facebook comments language code(en_US,de_DE...)
269
  width - Type here the Facebook comments box width
270
  count_of_comments - Type here the comments of Facebook comments to display
271
  bg_color - Select Facebook comments background color
272
+ animation_effect - Choose animation effect for Facebook comments box
273
 
274
  ### The Best Offer From WpDevArt
275