WpDevArt Facebook comments - Version 1.7.3

Version Description

Download this release

Release Info

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

Code changes from version 1.7.2 to 1.7.3

facebook-comment.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://wpdevart.com/wordpress-facebook-comments-plugin/
5
  * Author URI: http://wpdevart.com
6
  * Description: 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: 1.7.2
8
  * Author: wpdevart
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
10
  */
@@ -21,6 +21,7 @@ class wpdevart_comment_main{
21
 
22
  public $wpdevart_comment_options;
23
 
 
24
 
25
  function __construct(){
26
 
4
  * Plugin URI: http://wpdevart.com/wordpress-facebook-comments-plugin/
5
  * Author URI: http://wpdevart.com
6
  * Description: 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: 1.7.3
8
  * Author: wpdevart
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
10
  */
21
 
22
  public $wpdevart_comment_options;
23
 
24
+ /*############ Construct function ################*/
25
 
26
  function __construct(){
27
 
includes/admin_menu.php CHANGED
@@ -193,7 +193,7 @@ Also, here is another tutorial(from other source) of creating App Id, you can ch
193
  <p><strong>Curent_url</strong> - Type the page URL from where you need to show Facebook comments </p>
194
  <p><strong>Title_text</strong> - Type here Facebook comments box title</p>
195
  <p><strong>Colorscheme</strong> <span class="pro_feature"> (pro)</span> - Select Facebook comments box color scheme.Can be "light" or "dark".</p>
196
- <p><strong>Order_type</strong> - Select Facebook comments box order type.The order to use when displaying comments. Can be "social", "reverse_time", or "time". </p>
197
  <p><strong>Title_text_color</strong> - Select Facebook comments box title text color</p>
198
  <p><strong>Title_text_font_size</strong> - Type Facebook comments box title font-size(px)</p>
199
  <p><strong>Title_text_font_famely</strong> - Select Facebook comments box title font family</p>
193
  <p><strong>Curent_url</strong> - Type the page URL from where you need to show Facebook comments </p>
194
  <p><strong>Title_text</strong> - Type here Facebook comments box title</p>
195
  <p><strong>Colorscheme</strong> <span class="pro_feature"> (pro)</span> - Select Facebook comments box color scheme.Can be "light" or "dark".</p>
196
+ <p><strong>Order_type</strong> - Choose Facebook comments box order type.The order to use when displaying comments. Can be "social", "reverse_time", or "time". </p>
197
  <p><strong>Title_text_color</strong> - Select Facebook comments box title text color</p>
198
  <p><strong>Title_text_font_size</strong> - Type Facebook comments box title font-size(px)</p>
199
  <p><strong>Title_text_font_famely</strong> - Select Facebook comments box title font family</p>
includes/front_end.php CHANGED
@@ -73,7 +73,7 @@ class wpdevart_comment_front_end{
73
 
74
 
75
  }
76
- /*###################### Scripts and Styles part ##################*/
77
  public function generete_front_javascript(){
78
  wp_enqueue_script('thickbox');
79
  wp_enqueue_style('thickbox');
73
 
74
 
75
  }
76
+ /*###################### Scripts and Styles function ##################*/
77
  public function generete_front_javascript(){
78
  wp_enqueue_script('thickbox');
79
  wp_enqueue_style('thickbox');
includes/install_database.php CHANGED
@@ -22,12 +22,12 @@ class wpdevart_comment_install_database{
22
  "wpdevart_comments_box_order_type" => 'social',
23
  "wpdevart_comment_title_text" => 'Facebook Comments',
24
  "wpdevart_comment_title_text_color" => '#000000',
25
- "wpdevart_comment_title_text_font_size" => '17',
26
  "wpdevart_comment_title_text_font_famely" => 'Times New Roman,Times,Serif,Georgia',
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" => '10',
31
  "wpdevart_comments_box_locale" => 'en_US',
32
  )
33
  );
22
  "wpdevart_comments_box_order_type" => 'social',
23
  "wpdevart_comment_title_text" => 'Facebook Comments',
24
  "wpdevart_comment_title_text_color" => '#000000',
25
+ "wpdevart_comment_title_text_font_size" => '16',
26
  "wpdevart_comment_title_text_font_famely" => 'Times New Roman,Times,Serif,Georgia',
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" => '7',
31
  "wpdevart_comments_box_locale" => 'en_US',
32
  )
33
  );
includes/library.php CHANGED
@@ -26,11 +26,11 @@ class wpdevart_comment_setting{
26
  "curent_url" => get_permalink(),
27
  "title_text" => 'Comments',
28
  "title_text_color" => '#000000',
29
- "title_text_font_size" => '17',
30
  "title_text_font_famely" => 'Times New Roman,Times,Serif,Georgia',
31
  "title_text_position" => 'left',
32
  "width" => '100%',
33
- "count_of_comments" => '10',
34
  "locale" => 'en_US',
35
 
36
  );
26
  "curent_url" => get_permalink(),
27
  "title_text" => 'Comments',
28
  "title_text_color" => '#000000',
29
+ "title_text_font_size" => '16',
30
  "title_text_font_famely" => 'Times New Roman,Times,Serif,Georgia',
31
  "title_text_position" => 'left',
32
  "width" => '100%',
33
+ "count_of_comments" => '7',
34
  "locale" => 'en_US',
35
 
36
  );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wpdevart
3
  Tags: facebook comments, facebook comment, facebook comment notification, 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 Stream, social, responsive comments, social comments, comments plugin, facebook comment plugin
4
  Requires at least: 2.9
5
  Tested up to: 4.7.3
6
- Stable tag: 1.7.2
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
3
  Tags: facebook comments, facebook comment, facebook comment notification, 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 Stream, social, responsive comments, social comments, comments plugin, facebook comment plugin
4
  Requires at least: 2.9
5
  Tested up to: 4.7.3
6
+ Stable tag: 1.7.3
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9