Version Description
=
- Changed a default parameter.
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.3.8 |
| Comparing to | |
| See all releases | |
Code changes from version 2.3.7 to 2.3.8
- facebook-comment.php +1 -1
- includes/install_database.php +1 -1
- includes/library.php +1 -1
- includes/style/hire_expert.css +9 -0
- 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.3.
|
| 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.8
|
| 8 |
* Author: wpdevart
|
| 9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 10 |
*/
|
|
@@ -27,7 +27,7 @@ class wpdevart_comment_install_database{
|
|
| 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" => '
|
| 31 |
"wpdevart_comments_box_locale" => 'en_US',
|
| 32 |
"wpdevart_comments_box_include_sdk" => 'yes',
|
| 33 |
)
|
| 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" => '5',
|
| 31 |
"wpdevart_comments_box_locale" => 'en_US',
|
| 32 |
"wpdevart_comments_box_include_sdk" => 'yes',
|
| 33 |
)
|
|
@@ -33,7 +33,7 @@ class wpdevart_comment_setting{
|
|
| 33 |
"title_text_font_famely" => 'Times New Roman,Times,Serif,Georgia',
|
| 34 |
"title_text_position" => 'left',
|
| 35 |
"width" => '100%',
|
| 36 |
-
"count_of_comments" => '
|
| 37 |
"locale" => 'en_US',
|
| 38 |
|
| 39 |
);
|
| 33 |
"title_text_font_famely" => 'Times New Roman,Times,Serif,Georgia',
|
| 34 |
"title_text_position" => 'left',
|
| 35 |
"width" => '100%',
|
| 36 |
+
"count_of_comments" => '5',
|
| 37 |
"locale" => 'en_US',
|
| 38 |
|
| 39 |
);
|
|
@@ -14,6 +14,9 @@
|
|
| 14 |
box-sizing: border-box;
|
| 15 |
padding-left: 60px;
|
| 16 |
}
|
|
|
|
|
|
|
|
|
|
| 17 |
.wpdevart_hire_main {
|
| 18 |
color: #060606;
|
| 19 |
-webkit-box-sizing: border-box;
|
|
@@ -78,6 +81,9 @@
|
|
| 78 |
.wpdevart_hire_main:hover {
|
| 79 |
box-shadow: 0 6px 20px 1px #151d22;
|
| 80 |
}
|
|
|
|
|
|
|
|
|
|
| 81 |
.wpdevart_hire_image {
|
| 82 |
max-width: 128px;
|
| 83 |
margin: 0 auto;
|
|
@@ -98,6 +104,9 @@
|
|
| 98 |
font-size: 14px;
|
| 99 |
min-height: 63px;
|
| 100 |
}
|
|
|
|
|
|
|
|
|
|
| 101 |
.wpdev_hire_button{
|
| 102 |
background-color: #2b2350;
|
| 103 |
border: none;
|
| 14 |
box-sizing: border-box;
|
| 15 |
padding-left: 60px;
|
| 16 |
}
|
| 17 |
+
|
| 18 |
+
/*The Hire page main style*/
|
| 19 |
+
|
| 20 |
.wpdevart_hire_main {
|
| 21 |
color: #060606;
|
| 22 |
-webkit-box-sizing: border-box;
|
| 81 |
.wpdevart_hire_main:hover {
|
| 82 |
box-shadow: 0 6px 20px 1px #151d22;
|
| 83 |
}
|
| 84 |
+
|
| 85 |
+
/*The Hire page elements style*/
|
| 86 |
+
|
| 87 |
.wpdevart_hire_image {
|
| 88 |
max-width: 128px;
|
| 89 |
margin: 0 auto;
|
| 104 |
font-size: 14px;
|
| 105 |
min-height: 63px;
|
| 106 |
}
|
| 107 |
+
|
| 108 |
+
/*The Hire button style*/
|
| 109 |
+
|
| 110 |
.wpdev_hire_button{
|
| 111 |
background-color: #2b2350;
|
| 112 |
border: none;
|
|
@@ -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.
|
| 7 |
License: GPLv3
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
| 9 |
|
|
@@ -580,6 +580,10 @@ Yes, If you are logged in(Fb account) then you will see the moderate options for
|
|
| 580 |
|
| 581 |
* Fixed some text mistakes in the admin panel.
|
| 582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 583 |
==Step by step guide==
|
| 584 |
|
| 585 |
### 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.8
|
| 7 |
License: GPLv3
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
| 9 |
|
| 580 |
|
| 581 |
* Fixed some text mistakes in the admin panel.
|
| 582 |
|
| 583 |
+
= 2.3.8 ==
|
| 584 |
+
|
| 585 |
+
* Changed a default parameter.
|
| 586 |
+
|
| 587 |
==Step by step guide==
|
| 588 |
|
| 589 |
### Main options
|
