WpDevArt Facebook comments - Version 1.4.7

Version Description

=

  • Added new url for pro version.

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 .

Download this release

Release Info

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

Code changes from version 1.4.6 to 1.4.7

Files changed (2) hide show
  1. facebook-comment.php +13 -1
  2. readme.txt +5 -5
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.4.6
7
  * Author: wpdevart
8
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
9
  */
@@ -71,6 +71,18 @@ class wpdevart_comment_main{
71
  public function call_base_filters(){
72
  add_action( 'init', array($this,'registr_requeried_scripts') );
73
  add_action( 'admin_head', array($this,'include_requeried_scripts') );
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
  public function include_requeried_scripts(){
76
  wp_enqueue_script('wp-color-picker');
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.4.7
7
  * Author: wpdevart
8
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
9
  */
71
  public function call_base_filters(){
72
  add_action( 'init', array($this,'registr_requeried_scripts') );
73
  add_action( 'admin_head', array($this,'include_requeried_scripts') );
74
+ //for_upgrade
75
+ add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array($this,'plugin_activate_sublink') );
76
+
77
+ }
78
+ public function plugin_activate_sublink($links){
79
+ $plugin_submenu_added_link=array();
80
+ $added_link = array(
81
+ '<a target="_blank" style="color: rgba(10, 154, 62, 1); font-weight: bold; font-size: 13px;" href="http://wpdevart.com/wordpress-facebook-comments-plugin">Upgrade to Pro</a>',
82
+ );
83
+ $plugin_submenu_added_link=array_merge( $plugin_submenu_added_link, $added_link );
84
+ $plugin_submenu_added_link=array_merge( $plugin_submenu_added_link, $links );
85
+ return $plugin_submenu_added_link;
86
  }
87
  public function include_requeried_scripts(){
88
  wp_enqueue_script('wp-color-picker');
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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, facebook comment plugin
4
  Requires at least: 2.9
5
  Tested up to: 4.6.1
6
- Stable tag: 1.4.6
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -92,10 +92,6 @@ Here is an example of using the shortcode in PHP code:
92
 
93
  Unfortuantely Facebook Api don't let us to add such feature.
94
 
95
- = Can I import the old comments from my Facebook page into my website =
96
-
97
- Unfortuantely Facebook Api doesn't provide such feature as we know.
98
-
99
  = Can I exclude Facebook comments from some pages =
100
 
101
  Yes dear user, find this option below posts/pages content(admin panel).
@@ -319,6 +315,10 @@ Dear users, we also recommend you to take a look for this useful plugins - [Word
319
 
320
  * Edited admin menu options.
321
 
 
 
 
 
322
  ==Facebook comments WordPress step by step guide==
323
 
324
  ### Facebook Comments plugin main options
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, facebook comment plugin
4
  Requires at least: 2.9
5
  Tested up to: 4.6.1
6
+ Stable tag: 1.4.7
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
92
 
93
  Unfortuantely Facebook Api don't let us to add such feature.
94
 
 
 
 
 
95
  = Can I exclude Facebook comments from some pages =
96
 
97
  Yes dear user, find this option below posts/pages content(admin panel).
315
 
316
  * Edited admin menu options.
317
 
318
+ = 1.4.7 ==
319
+
320
+ * Added new url for pro version.
321
+
322
  ==Facebook comments WordPress step by step guide==
323
 
324
  ### Facebook Comments plugin main options