Version Description
=
- Corrected the admin menu options descriptions.
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
Release Info
| Developer | wpdevart |
| Plugin | |
| Version | 2.4.1 |
| Comparing to | |
| See all releases | |
Code changes from version 2.4.0 to 2.4.1
- facebook-comment.php +1 -1
- includes/admin_menu.php +7 -7
- readme.txt +5 -1
|
@@ -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.4.
|
| 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.4.1
|
| 8 |
* Author: wpdevart
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 10 |
*/
|
|
@@ -262,7 +262,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
|
|
| 262 |
</tr>
|
| 263 |
<tr>
|
| 264 |
<td>
|
| 265 |
-
Title <span title="Type here Facebook comments box title" class="desription_class">?</span>
|
| 266 |
</td>
|
| 267 |
<td>
|
| 268 |
<input type="text" name="wpdevart_comment_title_text" id="wpdevart_comment_title_text" value="<?php echo $page_parametrs['wpdevart_comment_title_text'] ?>">
|
|
@@ -271,7 +271,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
|
|
| 271 |
|
| 272 |
<tr >
|
| 273 |
<td>
|
| 274 |
-
Order Type <span title="Choose comments order type" class="desription_class">?</span>
|
| 275 |
</td>
|
| 276 |
<td>
|
| 277 |
<select id="wpdevart_comments_box_order_type">
|
|
@@ -283,7 +283,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
|
|
| 283 |
</tr>
|
| 284 |
<tr >
|
| 285 |
<td>
|
| 286 |
-
Title text color <span title="Select Facebook comments box title
|
| 287 |
</td>
|
| 288 |
<td>
|
| 289 |
<input type="text" class="color_option" id="wpdevart_comment_title_text_color" name="wpdevart_comment_title_text_color" value="<?php echo $page_parametrs['wpdevart_comment_title_text_color'] ?>"/>
|
|
@@ -291,7 +291,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
|
|
| 291 |
</tr>
|
| 292 |
<tr>
|
| 293 |
<td>
|
| 294 |
-
Title font-size <span title="Type Facebook comments box title font-size(px)" class="desription_class">?</span>
|
| 295 |
</td>
|
| 296 |
<td>
|
| 297 |
<input type="text" name="wpdevart_comment_title_text_font_size" id="wpdevart_comment_title_text_font_size" value="<?php echo $page_parametrs['wpdevart_comment_title_text_font_size'] ?>">Px
|
|
@@ -299,7 +299,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
|
|
| 299 |
</tr>
|
| 300 |
<tr>
|
| 301 |
<td>
|
| 302 |
-
Title font family <span title="
|
| 303 |
</td>
|
| 304 |
<td>
|
| 305 |
<?php $this->create_select_element_for_font('wpdevart_comment_title_text_font_famely',$page_parametrs['wpdevart_comment_title_text_font_famely']) ?>
|
|
@@ -307,7 +307,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
|
|
| 307 |
</tr>
|
| 308 |
<tr >
|
| 309 |
<td>
|
| 310 |
-
Title position <span title="Select Facebook comments title position" class="desription_class">?</span>
|
| 311 |
</td>
|
| 312 |
<td>
|
| 313 |
<select id="wpdevart_comment_title_text_position">
|
|
@@ -319,7 +319,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
|
|
| 319 |
</tr>
|
| 320 |
<tr>
|
| 321 |
<td>
|
| 322 |
-
Display comments on<span title="Select where to display Facebook comments" class="desription_class">?</span>
|
| 323 |
</td>
|
| 324 |
<td>
|
| 325 |
<?php $jsone_wpdevart_comments_box_show_in= json_decode(stripslashes($page_parametrs['wpdevart_comments_box_show_in']), true);?>
|
| 262 |
</tr>
|
| 263 |
<tr>
|
| 264 |
<td>
|
| 265 |
+
Title <span title="Type here the Facebook comments box title" class="desription_class">?</span>
|
| 266 |
</td>
|
| 267 |
<td>
|
| 268 |
<input type="text" name="wpdevart_comment_title_text" id="wpdevart_comment_title_text" value="<?php echo $page_parametrs['wpdevart_comment_title_text'] ?>">
|
| 271 |
|
| 272 |
<tr >
|
| 273 |
<td>
|
| 274 |
+
Order Type <span title="Choose the comments order type" class="desription_class">?</span>
|
| 275 |
</td>
|
| 276 |
<td>
|
| 277 |
<select id="wpdevart_comments_box_order_type">
|
| 283 |
</tr>
|
| 284 |
<tr >
|
| 285 |
<td>
|
| 286 |
+
Title text color <span title="Select the Facebook comments box title color" class="desription_class">?</span>
|
| 287 |
</td>
|
| 288 |
<td>
|
| 289 |
<input type="text" class="color_option" id="wpdevart_comment_title_text_color" name="wpdevart_comment_title_text_color" value="<?php echo $page_parametrs['wpdevart_comment_title_text_color'] ?>"/>
|
| 291 |
</tr>
|
| 292 |
<tr>
|
| 293 |
<td>
|
| 294 |
+
Title font-size <span title="Type the Facebook comments box title font-size(px)" class="desription_class">?</span>
|
| 295 |
</td>
|
| 296 |
<td>
|
| 297 |
<input type="text" name="wpdevart_comment_title_text_font_size" id="wpdevart_comment_title_text_font_size" value="<?php echo $page_parametrs['wpdevart_comment_title_text_font_size'] ?>">Px
|
| 299 |
</tr>
|
| 300 |
<tr>
|
| 301 |
<td>
|
| 302 |
+
Title font family <span title="Select the Facebook comments title font family" class="desription_class">?</span>
|
| 303 |
</td>
|
| 304 |
<td>
|
| 305 |
<?php $this->create_select_element_for_font('wpdevart_comment_title_text_font_famely',$page_parametrs['wpdevart_comment_title_text_font_famely']) ?>
|
| 307 |
</tr>
|
| 308 |
<tr >
|
| 309 |
<td>
|
| 310 |
+
Title position <span title="Select the Facebook comments title position" class="desription_class">?</span>
|
| 311 |
</td>
|
| 312 |
<td>
|
| 313 |
<select id="wpdevart_comment_title_text_position">
|
| 319 |
</tr>
|
| 320 |
<tr>
|
| 321 |
<td>
|
| 322 |
+
Display comments on<span title="Select where to display the Facebook comments box" class="desription_class">?</span>
|
| 323 |
</td>
|
| 324 |
<td>
|
| 325 |
<?php $jsone_wpdevart_comments_box_show_in= json_decode(stripslashes($page_parametrs['wpdevart_comments_box_show_in']), true);?>
|
|
@@ -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.2
|
| 6 |
-
Stable tag: 2.4.
|
| 7 |
License: GPLv3
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
| 9 |
|
|
@@ -592,6 +592,10 @@ Yes, If you are logged in(Fb account) then you will see the moderate options for
|
|
| 592 |
|
| 593 |
* Corrected some mistakes.
|
| 594 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 595 |
==Step by step guide==
|
| 596 |
|
| 597 |
### Main options
|
| 3 |
Tags: Facebook, facebook comments, social comments, comments, wordpress comments
|
| 4 |
Requires at least: 2.9
|
| 5 |
Tested up to: 5.8.2
|
| 6 |
+
Stable tag: 2.4.1
|
| 7 |
License: GPLv3
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
| 9 |
|
| 592 |
|
| 593 |
* Corrected some mistakes.
|
| 594 |
|
| 595 |
+
= 2.4.1 ==
|
| 596 |
+
|
| 597 |
+
* Corrected the admin menu options descriptions.
|
| 598 |
+
|
| 599 |
==Step by step guide==
|
| 600 |
|
| 601 |
### Main options
|
