Version Description
- Edit some options.
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 .
Release Info
Developer | wpdevart |
Plugin | WpDevArt Facebook comments |
Version | 1.3.6 |
Comparing to | |
See all releases |
Code changes from version 1.3.5 to 1.3.6
- facebook-comment.php +1 -1
- includes/admin_menu.php +1 -1
- includes/library.php +1 -1
- includes/style/admin-style.css +2 -2
- readme.txt +14 -2
@@ -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.3.
|
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.6
|
7 |
* Author: wpdevart
|
8 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
@@ -37,7 +37,7 @@ class wpdevart_comment_admin_menu{
|
|
37 |
|
38 |
/*
|
39 |
* Use get_post_meta() to retrieve the existing value
|
40 |
-
* From database
|
41 |
*/
|
42 |
$value = get_post_meta( $post->ID, '_disabel_wpdevart_facebook_comment', true );
|
43 |
echo '<label for="wpdevart_disable_field">';
|
37 |
|
38 |
/*
|
39 |
* Use get_post_meta() to retrieve the existing value
|
40 |
+
* From database, use the value for the form.
|
41 |
*/
|
42 |
$value = get_post_meta( $post->ID, '_disabel_wpdevart_facebook_comment', true );
|
43 |
echo '<label for="wpdevart_disable_field">';
|
@@ -4,7 +4,7 @@ class wpdevart_comment_setting{
|
|
4 |
public static $list_of_animations=array('bounce','flash','pulse','rubberBand','shake','swing','tada','wobble','bounceIn','bounceInDown','bounceInLeft','bounceInRight','bounceInUp','fadeIn','fadeInDown','fadeInDownBig','fadeInLeft','fadeInLeftBig','fadeInRight','fadeInRightBig','fadeInUp','fadeInUpBig','flip','flipInX','flipInY','lightSpeedIn','rotateIn','rotateInDownLeft','rotateInDownRight','rotateInUpLeft','rotateInUpRight','rollIn','zoomIn','zoomInDown','zoomInLeft','zoomInRight','zoomInUp');
|
5 |
public static $id_for_iframe=0;
|
6 |
|
7 |
-
// Function for
|
8 |
public static function get_animations_type_array($animation=''){
|
9 |
if($animation=='' || $animation=='none')
|
10 |
return '';
|
4 |
public static $list_of_animations=array('bounce','flash','pulse','rubberBand','shake','swing','tada','wobble','bounceIn','bounceInDown','bounceInLeft','bounceInRight','bounceInUp','fadeIn','fadeInDown','fadeInDownBig','fadeInLeft','fadeInLeftBig','fadeInRight','fadeInRightBig','fadeInUp','fadeInUpBig','flip','flipInX','flipInY','lightSpeedIn','rotateIn','rotateInDownLeft','rotateInDownRight','rotateInUpLeft','rotateInUpRight','rollIn','zoomIn','zoomInDown','zoomInLeft','zoomInRight','zoomInUp');
|
5 |
public static $id_for_iframe=0;
|
6 |
|
7 |
+
// Function for animation
|
8 |
public static function get_animations_type_array($animation=''){
|
9 |
if($animation=='' || $animation=='none')
|
10 |
return '';
|
@@ -238,7 +238,7 @@ button{
|
|
238 |
font-weight: bold;
|
239 |
padding-left: 21px;
|
240 |
}
|
241 |
-
/*
|
242 |
.remove_upload_image{
|
243 |
width:27px;
|
244 |
line-height:27px;
|
@@ -253,7 +253,7 @@ button{
|
|
253 |
margin-right:4px;
|
254 |
}
|
255 |
|
256 |
-
/*
|
257 |
.slider_div{
|
258 |
width:195px !important;
|
259 |
}
|
238 |
font-weight: bold;
|
239 |
padding-left: 21px;
|
240 |
}
|
241 |
+
/* Remove/upload image*/
|
242 |
.remove_upload_image{
|
243 |
width:27px;
|
244 |
line-height:27px;
|
253 |
margin-right:4px;
|
254 |
}
|
255 |
|
256 |
+
/* Slider options */
|
257 |
.slider_div{
|
258 |
width:195px !important;
|
259 |
}
|
@@ -2,8 +2,8 @@
|
|
2 |
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.
|
6 |
-
Stable tag: 1.3.
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -88,6 +88,14 @@ Here is an example of using the shortcode in PHP code:
|
|
88 |
|
89 |
`<?php echo do_shortcode('[wpdevart_facebook_comment 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" count_of_comments="2" ]'); ?>`
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
= I purchased the pro version, but didn't download the pro file =
|
92 |
|
93 |
Contact us at support@wpdevart.com and send us purchase details and we will send you the pro version.
|
@@ -255,6 +263,10 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
|
|
255 |
|
256 |
* Added notices.
|
257 |
|
|
|
|
|
|
|
|
|
258 |
==Facebook comments WordPress step by step guide==
|
259 |
|
260 |
### Facebook Comments plugin main options
|
2 |
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.5.0
|
6 |
+
Stable tag: 1.3.6
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
88 |
|
89 |
`<?php echo do_shortcode('[wpdevart_facebook_comment 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" count_of_comments="2" ]'); ?>`
|
90 |
|
91 |
+
= Is there any notification when users left new comment =
|
92 |
+
|
93 |
+
Unfortuantely Facebook Api don't let us to add such feature.
|
94 |
+
|
95 |
+
= What files I need to upload for installing the plugin =
|
96 |
+
|
97 |
+
You need to select the .zip file only, there is no need to extract the zip file, just upload it
|
98 |
+
|
99 |
= I purchased the pro version, but didn't download the pro file =
|
100 |
|
101 |
Contact us at support@wpdevart.com and send us purchase details and we will send you the pro version.
|
263 |
|
264 |
* Added notices.
|
265 |
|
266 |
+
= 1.3.6 =
|
267 |
+
|
268 |
+
* Edit some options.
|
269 |
+
|
270 |
==Facebook comments WordPress step by step guide==
|
271 |
|
272 |
### Facebook Comments plugin main options
|