Version Description
[20-06-2019] 1. Version update and Compatible with wp 5.2.2 2. Page token and id updated. 3. readme file updated
Download this release
Release Info
Developer | weblizar |
Plugin | Feed & LikeBox For Facebook |
Version | 2.8.3 |
Comparing to | |
See all releases |
Code changes from version 2.8.2 to 2.8.3
- facebook-by-weblizar.php +2 -2
- function/facebook-feed.php +3 -3
- readme.txt +7 -2
facebook-by-weblizar.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Social LikeBox & Feed
|
4 |
-
* Version: 2.8.
|
5 |
* Description: Display the Facebook Feed and Like box on your website. Its completely customizable, responsive and search engine optimization feeds and like-box contents.
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://www.weblizar.com
|
@@ -62,7 +62,7 @@ add_action('wp_enqueue_scripts', 'weblizar_feed_code_script');
|
|
62 |
|
63 |
/*Plugin Setting Link*/
|
64 |
function weblizar_plugin_add_settings_link( $links ) {
|
65 |
-
$fbw_pro_link = '<a href="https://weblizar.com/plugins/facebook-feed-pro/" target="_blank">
|
66 |
$settings_link = '<a href="options-general.php?page=facebooky-by-weblizar">' . __( 'Settings' ) . '</a>';
|
67 |
array_unshift( $links,$settings_link );
|
68 |
array_unshift($links,$fbw_pro_link);
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Social LikeBox & Feed
|
4 |
+
* Version: 2.8.3
|
5 |
* Description: Display the Facebook Feed and Like box on your website. Its completely customizable, responsive and search engine optimization feeds and like-box contents.
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://www.weblizar.com
|
62 |
|
63 |
/*Plugin Setting Link*/
|
64 |
function weblizar_plugin_add_settings_link( $links ) {
|
65 |
+
$fbw_pro_link = '<a href="https://weblizar.com/plugins/facebook-feed-pro/" target="_blank">Get Premium</a>';
|
66 |
$settings_link = '<a href="options-general.php?page=facebooky-by-weblizar">' . __( 'Settings' ) . '</a>';
|
67 |
array_unshift( $links,$settings_link );
|
68 |
array_unshift($links,$fbw_pro_link);
|
function/facebook-feed.php
CHANGED
@@ -18,7 +18,7 @@ if(isset($_POST['security'])) {
|
|
18 |
$facebook_feed_fetch = unserialize(get_option("weblizar_facebook_feed_option_settings"));
|
19 |
if(isset($facebook_feed_fetch["ffp_limit"])) { $ffp_limit=$facebook_feed_fetch["ffp_limit"]; } else {$ffp_limit="5";}
|
20 |
if(isset($facebook_feed_fetch["ffp_timeline_layout"])) { $ffp_timeline_layout=$facebook_feed_fetch["ffp_timeline_layout"]; } else {$ffp_timeline_layout="full_width"; }
|
21 |
-
if(isset($facebook_feed_fetch["ffp_page_url"])) { $ffp_page_url=$facebook_feed_fetch["ffp_page_url"]; } else {$ffp_page_url="
|
22 |
if(isset($facebook_feed_fetch["feed_customs_css"])){ $feed_customs_css=$facebook_feed_fetch["feed_customs_css"]; } else { $feed_customs_css=""; }
|
23 |
if(isset($facebook_feed_fetch["ffp_hover_color"])){ $ffp_hover_color=$facebook_feed_fetch["ffp_hover_color"]; } else { $ffp_hover_color="#2e2c2c"; }
|
24 |
if(isset($facebook_feed_fetch["ffp_header_check"])){ $ffp_header_check=$facebook_feed_fetch["ffp_header_check"]; } else { $ffp_header_check="no"; }
|
@@ -53,7 +53,7 @@ if(isset($facebook_feed_fetch["ffp_page_id"])){ $ffp_page_id=$facebook_feed_fet
|
|
53 |
<label> <?php _e('Facebook Access Token:', WEBLIZAR_FACEBOOK_TEXT_DOMAIN);?></label>
|
54 |
</div>
|
55 |
<div class="ffp_set_l col-md-6">
|
56 |
-
<input type="text" id="ffp_page_id" name="ffp_page_id" value="<?php if(isset($ffp_page_id)) { echo $ffp_page_id;} else { } ?>" style="width:100%">
|
57 |
</div>
|
58 |
<div class="ffp_set_l col-md-6"></div>
|
59 |
<div class="ffp_set_l col-md-6"><a href="https://weblizar.com/blog/generate-facebook-access-token/" style="width:100%"><?php _e('get your access token.', WEBLIZAR_FACEBOOK_TEXT_DOMAIN);?></a>
|
@@ -67,7 +67,7 @@ if(isset($facebook_feed_fetch["ffp_page_id"])){ $ffp_page_id=$facebook_feed_fet
|
|
67 |
<label> <?php _e('Page ID:', WEBLIZAR_FACEBOOK_TEXT_DOMAIN);?></label>
|
68 |
</div>
|
69 |
<div class="ffp_set_l col-md-6">
|
70 |
-
<input type="text" id="ffp_page_url" name="ffp_page_url" value="<?php if(isset($ffp_page_url)) { echo $ffp_page_url;} else { echo "
|
71 |
</div>
|
72 |
</div>
|
73 |
</div>
|
18 |
$facebook_feed_fetch = unserialize(get_option("weblizar_facebook_feed_option_settings"));
|
19 |
if(isset($facebook_feed_fetch["ffp_limit"])) { $ffp_limit=$facebook_feed_fetch["ffp_limit"]; } else {$ffp_limit="5";}
|
20 |
if(isset($facebook_feed_fetch["ffp_timeline_layout"])) { $ffp_timeline_layout=$facebook_feed_fetch["ffp_timeline_layout"]; } else {$ffp_timeline_layout="full_width"; }
|
21 |
+
if(isset($facebook_feed_fetch["ffp_page_url"])) { $ffp_page_url=$facebook_feed_fetch["ffp_page_url"]; } else {$ffp_page_url="1614483668626851"; }
|
22 |
if(isset($facebook_feed_fetch["feed_customs_css"])){ $feed_customs_css=$facebook_feed_fetch["feed_customs_css"]; } else { $feed_customs_css=""; }
|
23 |
if(isset($facebook_feed_fetch["ffp_hover_color"])){ $ffp_hover_color=$facebook_feed_fetch["ffp_hover_color"]; } else { $ffp_hover_color="#2e2c2c"; }
|
24 |
if(isset($facebook_feed_fetch["ffp_header_check"])){ $ffp_header_check=$facebook_feed_fetch["ffp_header_check"]; } else { $ffp_header_check="no"; }
|
53 |
<label> <?php _e('Facebook Access Token:', WEBLIZAR_FACEBOOK_TEXT_DOMAIN);?></label>
|
54 |
</div>
|
55 |
<div class="ffp_set_l col-md-6">
|
56 |
+
<input type="text" id="ffp_page_id" name="ffp_page_id" value="<?php if(isset($ffp_page_id)) { echo $ffp_page_id;} else {echo "EAAHeyZC0u3K4BANn9VdO5DkCN08ubz1wbtibnGrZCuhXnJgg3Sm3b89e2q20N03Pd07aZACDeF2EycftjoPkgx1BLk59V2qfIJpP4a8SxqCig4OVAXSO6N9EkozCnKygaRF0ANDLDhawcWwapZCNs02qe0ZANNxBLEgHux7FSEAZDZD";} ?>" style="width:100%">
|
57 |
</div>
|
58 |
<div class="ffp_set_l col-md-6"></div>
|
59 |
<div class="ffp_set_l col-md-6"><a href="https://weblizar.com/blog/generate-facebook-access-token/" style="width:100%"><?php _e('get your access token.', WEBLIZAR_FACEBOOK_TEXT_DOMAIN);?></a>
|
67 |
<label> <?php _e('Page ID:', WEBLIZAR_FACEBOOK_TEXT_DOMAIN);?></label>
|
68 |
</div>
|
69 |
<div class="ffp_set_l col-md-6">
|
70 |
+
<input type="text" id="ffp_page_url" name="ffp_page_url" value="<?php if(isset($ffp_page_url)) { echo $ffp_page_url;} else { echo "1614483668626851";} ?>" style="width:100%">
|
71 |
</div>
|
72 |
</div>
|
73 |
</div>
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: weblizar
|
|
3 |
Donate link: https://www.weblizar.com/
|
4 |
Tags: facebook, facebook feed, facebook like box, facebook posts, facebook page, FaceBook posts, facebook widget, FaceBook profile, FaceBook group, facebook page feed, facebook page like box, feed, likebox
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 5.2
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -216,6 +216,11 @@ For more information, see [Weblizar](https://weblizar.com/) .
|
|
216 |
|
217 |
== Changelog ==
|
218 |
|
|
|
|
|
|
|
|
|
|
|
219 |
= 2.8.2 = [15-05-2019]
|
220 |
1. Version update and Compatible with wp 5.2
|
221 |
2. bug fixed, pro banner and screenshots updated
|
3 |
Donate link: https://www.weblizar.com/
|
4 |
Tags: facebook, facebook feed, facebook like box, facebook posts, facebook page, FaceBook posts, facebook widget, FaceBook profile, FaceBook group, facebook page feed, facebook page like box, feed, likebox
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 5.2.2
|
7 |
+
Stable tag: 2.8.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
216 |
|
217 |
== Changelog ==
|
218 |
|
219 |
+
= 2.8.3 = [20-06-2019]
|
220 |
+
1. Version update and Compatible with wp 5.2.2
|
221 |
+
2. Page token and id updated.
|
222 |
+
3. readme file updated
|
223 |
+
|
224 |
= 2.8.2 = [15-05-2019]
|
225 |
1. Version update and Compatible with wp 5.2
|
226 |
2. bug fixed, pro banner and screenshots updated
|