WpDevArt Facebook comments - Version 1.5.3

Version Description

=

  • Edit user manual description in admin menu.

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(px)
  • 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(px)
  • 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 Contact Form, 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.5.3
Comparing to
See all releases

Code changes from version 1.5.2 to 1.5.3

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.5.2
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.5.3
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 field that we can check for later.
36
  wp_nonce_field( 'wpdevar_save_post', 'wpdevart_facebook_meta_box_nonce' );
37
 
38
  /*
@@ -169,20 +169,20 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
169
  <p><strong>Here's an example of using the Facebook comments shortcode in posts, pages:</strong></p>
170
  <p><code>[wpdevart_facebook_comment curent_url="http://developers.facebook.com/docs/plugins/comments/" title_text="Facebook Comment" order_type="social" title_text_color="#000000" title_text_font_size="22" title_text_font_famely="monospace" title_text_position="left" width="100%" bg_color="#d4d4d4" animation_effect="random" count_of_comments="2" ]</code></p>
171
 
172
- <p><strong>Here's an example of using the shortcode in PHP code:</strong></p>
173
  <p><code>&lt;?php echo do_shortcode('[wpdevart_facebook_comment curent_url="http://developers.facebook.com/docs/plugins/comments/" order_type="social" 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="#d4d4d4" animation_effect="random" count_of_comments="3" ]'); ?&gt;</code></p>
174
 
175
  <p><strong>Here are explanation of Facebook comments shortcode attributes.</strong></p>
176
 
177
- <p><strong>curent_url</strong> - Type the URL of the page from where you need to show Facebook comments </p>
178
  <p><strong>title_text</strong> - Type here Facebook comments box title</p>
179
  <p><strong>colorscheme</strong> <span class="pro_feature"> (pro)</span> - Select Facebook comments box color scheme.Can be "light" or "dark".</p>
180
  <p><strong>order_type</strong> - Select Facebook comments box order type.The order to use when displaying comments. Can be "social", "reverse_time", or "time". </p>
181
  <p><strong>title_text_color</strong> - Select Facebook comments box title text color</p>
182
- <p><strong>title_text_font_size</strong> - Type Facebook comments box title font-size</p>
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>
32
  }
33
  }
34
  public function generete_html_for_wpdevart_comment_box($post){
35
+ // Add field that we can check for later.
36
  wp_nonce_field( 'wpdevar_save_post', 'wpdevart_facebook_meta_box_nonce' );
37
 
38
  /*
169
  <p><strong>Here's an example of using the Facebook comments shortcode in posts, pages:</strong></p>
170
  <p><code>[wpdevart_facebook_comment curent_url="http://developers.facebook.com/docs/plugins/comments/" title_text="Facebook Comment" order_type="social" title_text_color="#000000" title_text_font_size="22" title_text_font_famely="monospace" title_text_position="left" width="100%" bg_color="#d4d4d4" animation_effect="random" count_of_comments="2" ]</code></p>
171
 
172
+ <p><strong>Here's an example of using the Facebook comments shortcode in PHP code:</strong></p>
173
  <p><code>&lt;?php echo do_shortcode('[wpdevart_facebook_comment curent_url="http://developers.facebook.com/docs/plugins/comments/" order_type="social" 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="#d4d4d4" animation_effect="random" count_of_comments="3" ]'); ?&gt;</code></p>
174
 
175
  <p><strong>Here are explanation of Facebook comments shortcode attributes.</strong></p>
176
 
177
+ <p><strong>curent_url</strong> - Type the page URL from where you need to show Facebook comments </p>
178
  <p><strong>title_text</strong> - Type here Facebook comments box title</p>
179
  <p><strong>colorscheme</strong> <span class="pro_feature"> (pro)</span> - Select Facebook comments box color scheme.Can be "light" or "dark".</p>
180
  <p><strong>order_type</strong> - Select Facebook comments box order type.The order to use when displaying comments. Can be "social", "reverse_time", or "time". </p>
181
  <p><strong>title_text_color</strong> - Select Facebook comments box title text color</p>
182
+ <p><strong>title_text_font_size</strong> - Type Facebook comments box title font-size(px)</p>
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(px)</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>
includes/install_database.php CHANGED
@@ -22,12 +22,12 @@ class wpdevart_comment_install_database{
22
  "wpdevart_comments_box_order_type" => 'social',
23
  "wpdevart_comment_title_text" => 'Facebook Comments',
24
  "wpdevart_comment_title_text_color" => '#000000',
25
- "wpdevart_comment_title_text_font_size" => '20',
26
  "wpdevart_comment_title_text_font_famely" => 'Times New Roman,Times,serif,Georgia',
27
  "wpdevart_comment_title_text_position" => 'left',
28
  "wpdevart_comments_box_show_in" => '{"home":true,"post":true,"page":true}',
29
  "wpdevart_comments_box_width" => '100%',
30
- "wpdevart_comments_box_count_of_comments" => '7',
31
  "wpdevart_comments_box_locale" => 'en_US',
32
  )
33
  );
22
  "wpdevart_comments_box_order_type" => 'social',
23
  "wpdevart_comment_title_text" => 'Facebook Comments',
24
  "wpdevart_comment_title_text_color" => '#000000',
25
+ "wpdevart_comment_title_text_font_size" => '22',
26
  "wpdevart_comment_title_text_font_famely" => 'Times New Roman,Times,serif,Georgia',
27
  "wpdevart_comment_title_text_position" => 'left',
28
  "wpdevart_comments_box_show_in" => '{"home":true,"post":true,"page":true}',
29
  "wpdevart_comments_box_width" => '100%',
30
+ "wpdevart_comments_box_count_of_comments" => '8',
31
  "wpdevart_comments_box_locale" => 'en_US',
32
  )
33
  );
includes/library.php CHANGED
@@ -26,11 +26,11 @@ class wpdevart_comment_setting{
26
  "curent_url" => get_permalink(),
27
  "title_text" => 'Comments',
28
  "title_text_color" => '#000000',
29
- "title_text_font_size" => '25',
30
  "title_text_font_famely" => 'Times New Roman,Times,serif,Georgia',
31
  "title_text_position" => 'left',
32
  "width" => '100%',
33
- "count_of_comments" => '7',
34
  "locale" => 'en_US',
35
 
36
  );
26
  "curent_url" => get_permalink(),
27
  "title_text" => 'Comments',
28
  "title_text_color" => '#000000',
29
+ "title_text_font_size" => '22',
30
  "title_text_font_famely" => 'Times New Roman,Times,serif,Georgia',
31
  "title_text_position" => 'left',
32
  "width" => '100%',
33
+ "count_of_comments" => '8',
34
  "locale" => 'en_US',
35
 
36
  );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wpdevart
3
  Tags: facebook comments, facebook comment, facebook comment notification, 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, facebook comment plugin, yahoo
4
  Requires at least: 2.9
5
  Tested up to: 4.6.1
6
- Stable tag: 1.5.2
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -305,7 +305,7 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
305
 
306
  = 1.4.4 =
307
 
308
- * Changed some instal database options.
309
 
310
  = 1.4.5 =
311
 
@@ -339,6 +339,10 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
339
 
340
  * Edit comments code.
341
 
 
 
 
 
342
  ==Facebook comments WordPress step by step guide==
343
 
344
  ### Facebook Comments plugin main options
@@ -347,11 +351,11 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
347
  * Title - Type here Facebook comments box title
348
  * Color scheme - Select Facebook comments box Color scheme
349
  * Title text color - Select Facebook comments box title text color
350
- * Title font-size - Type Facebook comments box title font-size
351
  * Title font family - Select Facebook comments box title font family
352
  * Title position - Select Facebook comments box title position
353
  * Display comment on - Select where to display Facebook comments
354
- * Comment box width - Type here the Facebook comments box width
355
  * Number of comments show - Type here the comments of Facebook comments to display
356
  * Animation effect - Select animation effect
357
  * Background color - Select Facebook comments background color
3
  Tags: facebook comments, facebook comment, facebook comment notification, 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, facebook comment plugin, yahoo
4
  Requires at least: 2.9
5
  Tested up to: 4.6.1
6
+ Stable tag: 1.5.3
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
305
 
306
  = 1.4.4 =
307
 
308
+ * Changed some install database options.
309
 
310
  = 1.4.5 =
311
 
339
 
340
  * Edit comments code.
341
 
342
+ = 1.5.3 ==
343
+
344
+ * Edit user manual description in admin menu.
345
+
346
  ==Facebook comments WordPress step by step guide==
347
 
348
  ### Facebook Comments plugin main options
351
  * Title - Type here Facebook comments box title
352
  * Color scheme - Select Facebook comments box Color scheme
353
  * Title text color - Select Facebook comments box title text color
354
+ * Title font-size - Type Facebook comments box title font-size(px)
355
  * Title font family - Select Facebook comments box title font family
356
  * Title position - Select Facebook comments box title position
357
  * Display comment on - Select where to display Facebook comments
358
+ * Comment box width - Type here the Facebook comments box width(px)
359
  * Number of comments show - Type here the comments of Facebook comments to display
360
  * Animation effect - Select animation effect
361
  * Background color - Select Facebook comments background color