WpDevArt Facebook comments - Version 2.3.6

Version Description

=

  • Changed some options description texts.

Step by step guide

Main options

  • APP ID - Type here your Fb App ID
  • Title - Type here the title
  • Color scheme - Select the Color scheme
  • Title text color - Select the title text color
  • Title font-size - Type the title font-size(px)
  • Title font family - Select the title font family
  • Title position - Select the title position
  • Display comment on - Select where to display Fb box
  • Width - Type here the width(px)
  • Number - Type here the number of remarks to display
  • Animation effect - Select animation effect
  • Background color - Select the background color
  • Position -Select the position
  • Language - Type here the language code(en_US,de_DE...)

Adding the 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="Title" 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="Fb title" 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 shortcode attributes.

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

Download this release

Release Info

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

Code changes from version 2.3.5 to 2.3.6

Files changed (3) hide show
  1. facebook-comment.php +1 -1
  2. includes/admin_menu.php +4 -4
  3. readme.txt +5 -1
facebook-comment.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://wpdevart.com/wordpress-facebook-comments-plugin
5
  * Author URI: https://wpdevart.com
6
  * Description: Social (Facebook) comments plugin will help you to display Facebook Comments box on your website. You can use Facebook Comments on your pages/posts.
7
- * Version: 2.3.5
8
  * Author: wpdevart
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
10
  */
4
  * Plugin URI: https://wpdevart.com/wordpress-facebook-comments-plugin
5
  * Author URI: https://wpdevart.com
6
  * Description: Social (Facebook) comments plugin will help you to display Facebook Comments box on your website. You can use Facebook Comments on your pages/posts.
7
+ * Version: 2.3.6
8
  * Author: wpdevart
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
10
  */
includes/admin_menu.php CHANGED
@@ -332,7 +332,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
332
  </tr>
333
  <tr >
334
  <td>
335
- Position <span class="pro_feature"> (pro)</span> <span title="Select Facebook comments box position(before or after WordPress standard comments)" class="desription_class">?</span>
336
  </td>
337
  <td>
338
  <select class="pro_select" id="wpdevart_comments_box_vertical_position">
@@ -352,7 +352,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
352
  </tr>
353
  <tr>
354
  <td>
355
- Number of comments <span title="Type here the number of Facebook comments to show" class="desription_class">?</span>
356
  </td>
357
  <td>
358
  <input type="text" name="wpdevart_comments_box_count_of_comments" id="wpdevart_comments_box_count_of_comments" value="<?php echo $page_parametrs['wpdevart_comments_box_count_of_comments'] ?>">
@@ -360,7 +360,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
360
  </tr>
361
  <tr >
362
  <td>
363
- Background color <span class="pro_feature"> (pro)</span> <span title=" Select Facebook comments background color" class="desription_class">?</span>
364
  </td>
365
  <td>
366
  <div class="wp-picker-container disabled_picker">
@@ -370,7 +370,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
370
  </tr>
371
  <tr>
372
  <td>
373
- Animation effect <span class="pro_feature"> (pro)</span> <span title="Select the animation effect for Facebook comments box" class="desription_class">?</span>
374
  </td>
375
  <td>
376
  <?php wpdevart_comment_setting::generete_animation_select('animation_effect','none') ?>
332
  </tr>
333
  <tr >
334
  <td>
335
+ Position <span class="pro_feature"> (pro)</span> <span title="Select the Facebook comments box position(before or after WordPress standard comments box)" class="desription_class">?</span>
336
  </td>
337
  <td>
338
  <select class="pro_select" id="wpdevart_comments_box_vertical_position">
352
  </tr>
353
  <tr>
354
  <td>
355
+ Number of comments <span title="Type here the number of comments to display" class="desription_class">?</span>
356
  </td>
357
  <td>
358
  <input type="text" name="wpdevart_comments_box_count_of_comments" id="wpdevart_comments_box_count_of_comments" value="<?php echo $page_parametrs['wpdevart_comments_box_count_of_comments'] ?>">
360
  </tr>
361
  <tr >
362
  <td>
363
+ Background color <span class="pro_feature"> (pro)</span> <span title=" Select Facebook comments box background color" class="desription_class">?</span>
364
  </td>
365
  <td>
366
  <div class="wp-picker-container disabled_picker">
370
  </tr>
371
  <tr>
372
  <td>
373
+ Animation effect <span class="pro_feature"> (pro)</span> <span title="Select the animation effect for the Facebook comments box" class="desription_class">?</span>
374
  </td>
375
  <td>
376
  <?php wpdevart_comment_setting::generete_animation_select('animation_effect','none') ?>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wpdevart
3
  Tags: Facebook, facebook comments, social comments, comments, wordpress comments
4
  Requires at least: 2.9
5
  Tested up to: 5.8.1
6
- Stable tag: 2.3.5
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -572,6 +572,10 @@ Yes, If you are logged in(Fb account) then you will see the moderate options for
572
 
573
  * Corrected the positions of explanation of comments box shortcode attributes.
574
 
 
 
 
 
575
  ==Step by step guide==
576
 
577
  ### Main options
3
  Tags: Facebook, facebook comments, social comments, comments, wordpress comments
4
  Requires at least: 2.9
5
  Tested up to: 5.8.1
6
+ Stable tag: 2.3.6
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
572
 
573
  * Corrected the positions of explanation of comments box shortcode attributes.
574
 
575
+ = 2.3.6 ==
576
+
577
+ * Changed some options description texts.
578
+
579
  ==Step by step guide==
580
 
581
  ### Main options