Version Description
- Compatible with WordPress 4.8
Download this release
Release Info
Developer | smashballoon |
Plugin | Custom Facebook Feed |
Version | 2.4.6 |
Comparing to | |
See all releases |
Code changes from version 2.4.5 to 2.4.6
- README.txt +7 -4
- css/cff-admin-style.css +48 -0
- custom-facebook-feed-admin.php +41 -20
- custom-facebook-feed.php +3 -3
README.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: smashballoon
|
3 |
Tags: Facebook, Facebook feed, Facebook posts, Facebook wall, Facebook group
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 2.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -11,7 +11,7 @@ The Custom Facebook Feed allows you to display completely customizable Facebook
|
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
-
Display
|
15 |
|
16 |
*"The perfect plugin with amazing support! What else do you want? Get it!"* - [JoeJeffries](http://wordpress.org/support/topic/you-dont-already-have-this)
|
17 |
|
@@ -80,7 +80,7 @@ For a full list of FAQs and help with troubleshooting please visit the **[FAQ &
|
|
80 |
|
81 |
If you have a Facebook **page** with a URL like this: `https://www.facebook.com/smashballoon` then the Page ID is just `smashballoon`. If your page URL is structured like this: `https://www.facebook.com/pages/smashballoon/123654123654123` then the Page ID is actually the number at the end, so in this case `123654123654123`.
|
82 |
|
83 |
-
If you have a Facebook **group** then use [this tool](
|
84 |
|
85 |
Copy and paste the ID into the [Pro demo](https://smashballoon.com/custom-facebook-feed/demo/) to test it.
|
86 |
|
@@ -265,6 +265,9 @@ You no longer need your own Access Token to use the Custom Facebook Feed Plugin,
|
|
265 |
|
266 |
== Changelog ==
|
267 |
|
|
|
|
|
|
|
268 |
= 2.4.5 =
|
269 |
* Tweak: Updated plugin links for new WordPress.org repo
|
270 |
* Fix: Minor bug fixes
|
2 |
Contributors: smashballoon
|
3 |
Tags: Facebook, Facebook feed, Facebook posts, Facebook wall, Facebook group
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 4.9
|
6 |
+
Stable tag: 2.4.6
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
Display **completely customizable**, **responsive** and **search engine crawlable** Facebook feeds on your website. Completely match the look and feel of your site with tons of customization options!
|
15 |
|
16 |
*"The perfect plugin with amazing support! What else do you want? Get it!"* - [JoeJeffries](http://wordpress.org/support/topic/you-dont-already-have-this)
|
17 |
|
80 |
|
81 |
If you have a Facebook **page** with a URL like this: `https://www.facebook.com/smashballoon` then the Page ID is just `smashballoon`. If your page URL is structured like this: `https://www.facebook.com/pages/smashballoon/123654123654123` then the Page ID is actually the number at the end, so in this case `123654123654123`.
|
82 |
|
83 |
+
If you have a Facebook **group** then use [this tool](https://findmyfbid.com/ "Look Up my ID") to find your Group ID.
|
84 |
|
85 |
Copy and paste the ID into the [Pro demo](https://smashballoon.com/custom-facebook-feed/demo/) to test it.
|
86 |
|
265 |
|
266 |
== Changelog ==
|
267 |
|
268 |
+
= 2.4.6 =
|
269 |
+
* Compatible with WordPress 4.8
|
270 |
+
|
271 |
= 2.4.5 =
|
272 |
* Tweak: Updated plugin links for new WordPress.org repo
|
273 |
* Fix: Minor bug fixes
|
css/cff-admin-style.css
CHANGED
@@ -380,4 +380,52 @@
|
|
380 |
.cff_review_notice .cff_notice_close:hover,
|
381 |
.cff_review_notice .cff_notice_close:focus{
|
382 |
color: #a34100;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
}
|
380 |
.cff_review_notice .cff_notice_close:hover,
|
381 |
.cff_review_notice .cff_notice_close:focus{
|
382 |
color: #a34100;
|
383 |
+
}
|
384 |
+
|
385 |
+
|
386 |
+
/* Support page */
|
387 |
+
#cff-admin .cff_support{
|
388 |
+
overflow: hidden;
|
389 |
+
margin-bottom: 20px;
|
390 |
+
width: 70%;
|
391 |
+
}
|
392 |
+
#cff-admin .cff_support p{
|
393 |
+
width: 100%;
|
394 |
+
float: left;
|
395 |
+
clear: both;
|
396 |
+
margin: 0 0 20px 0;
|
397 |
+
}
|
398 |
+
#cff-admin .cff-support-title{
|
399 |
+
font-weight: bold;
|
400 |
+
font-size: 16px;
|
401 |
+
display: block;
|
402 |
+
padding-bottom: 5px;
|
403 |
+
}
|
404 |
+
#cff-admin .cff-support-faqs{
|
405 |
+
float: left;
|
406 |
+
clear: both;
|
407 |
+
width: 100%;
|
408 |
+
padding-left: 5%;
|
409 |
+
margin: -10px 0 10px 0;
|
410 |
+
}
|
411 |
+
#cff-admin .cff-support-faqs ul{
|
412 |
+
float: left;
|
413 |
+
width: 250px;
|
414 |
+
margin-right: 0;
|
415 |
+
}
|
416 |
+
#cff-admin .cff-support-faqs .cff-faq-col-1{
|
417 |
+
width: 200px;
|
418 |
+
}
|
419 |
+
#cff-admin .cff-support-faqs ul li{
|
420 |
+
font-size: 13px;
|
421 |
+
margin-bottom: 4px;
|
422 |
+
}
|
423 |
+
#cff-admin .cff-support-faqs .fa-chevron-right{
|
424 |
+
font-size: 8px;
|
425 |
+
margin-left: 4px;
|
426 |
+
}
|
427 |
+
#cff-admin #cff-support-video{
|
428 |
+
margin-top: 10px;
|
429 |
+
border: 1px solid #ddd;
|
430 |
+
display: none;
|
431 |
}
|
custom-facebook-feed-admin.php
CHANGED
@@ -159,7 +159,7 @@ function cff_settings_page() {
|
|
159 |
<div class="cff-tooltip cff-more-info">
|
160 |
<ul>
|
161 |
<li><?php _e('If you have a Facebook <b>page</b> with a URL like this: <code>https://www.facebook.com/your_page_name</code> then the Page ID is just <b>your_page_name</b>. If your page URL is structured like this: <code>https://www.facebook.com/pages/your_page_name/123654123654123</code> then the Page ID is actually the number at the end, so in this case <b>123654123654123</b>.</li>', 'custom-facebook-feed'); ?>
|
162 |
-
<li><?php _e('If you have a Facebook <b>group</b> then use <a href="
|
163 |
<li><?php _e('You can copy and paste your ID into the <a href="https://smashballoon.com/custom-facebook-feed/demo/" target="_blank">demo</a> to test it.', 'custom-facebook-feed'); ?></li>
|
164 |
</ul>
|
165 |
</div>
|
@@ -491,27 +491,48 @@ function cff_settings_page() {
|
|
491 |
|
492 |
<?php if( $cff_active_tab == 'support' ) { //Start Support tab ?>
|
493 |
|
494 |
-
<
|
495 |
-
<h3>Documentation</h3>
|
496 |
-
<p>Need help setting up, configuring or customizing the plugin? Check out the links below:</p>
|
497 |
-
<ul>
|
498 |
-
<li>- <?php _e('<a href="https://smashballoon.com/custom-facebook-feed/docs/free/" target="_blank">Installation and Configuration</a>', 'custom-facebook-feed'); ?></li>
|
499 |
-
<li>- <?php _e('<a href="https://smashballoon.com/custom-facebook-feed/docs/shortcodes/" target="_blank">Shortcode Reference</a>', 'custom-facebook-feed'); ?></li>
|
500 |
-
<li>- <?php _e('<a href="https://smashballoon.com/category/custom-facebook-feed/customizations/snippets/?cat=18" target="_blank">Custom CSS and JavaScript Snippets</a>', 'custom-facebook-feed'); ?></li>
|
501 |
-
</ul>
|
502 |
-
<br />
|
503 |
-
<h3><?php _e('FAQs and Troubleshooting', 'custom-facebook-feed'); ?></h3>
|
504 |
-
<p>Having trouble getting the plugin to work? Try the links below:</p>
|
505 |
-
<ul>
|
506 |
-
<li>- <?php _e('<a href="https://smashballoon.com/category/custom-facebook-feed/faq/?cat=18" target="_blank">General Questions</a>', 'custom-facebook-feed'); ?></li>
|
507 |
-
<li>- <?php _e('<a href="https://smashballoon.com/custom-facebook-feed/faq/setup/" target="_blank">Setting Up & Displaying your Feed</a>', 'custom-facebook-feed'); ?></li>
|
508 |
-
<li>- <?php _e('<a href="https://smashballoon.com/category/custom-facebook-feed/troubleshooting/?cat=18" target="_blank">Troubleshooting & Common Support Questions</a>', 'custom-facebook-feed'); ?></li>
|
509 |
-
</ul>
|
510 |
|
511 |
-
|
512 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
|
514 |
-
<br />
|
515 |
<h3><?php _e('System Info <i style="color: #666; font-size: 11px; font-weight: normal;">Click the text below to select all</i>', 'custom-facebook-feed'); ?></h3>
|
516 |
|
517 |
<?php
|
159 |
<div class="cff-tooltip cff-more-info">
|
160 |
<ul>
|
161 |
<li><?php _e('If you have a Facebook <b>page</b> with a URL like this: <code>https://www.facebook.com/your_page_name</code> then the Page ID is just <b>your_page_name</b>. If your page URL is structured like this: <code>https://www.facebook.com/pages/your_page_name/123654123654123</code> then the Page ID is actually the number at the end, so in this case <b>123654123654123</b>.</li>', 'custom-facebook-feed'); ?>
|
162 |
+
<li><?php _e('If you have a Facebook <b>group</b> then use <a href="https://findmyfbid.com/" target="_blank" title="Find my ID">this tool</a> to find your ID.', 'custom-facebook-feed'); ?></li>
|
163 |
<li><?php _e('You can copy and paste your ID into the <a href="https://smashballoon.com/custom-facebook-feed/demo/" target="_blank">demo</a> to test it.', 'custom-facebook-feed'); ?></li>
|
164 |
</ul>
|
165 |
</div>
|
491 |
|
492 |
<?php if( $cff_active_tab == 'support' ) { //Start Support tab ?>
|
493 |
|
494 |
+
<div class="cff_support">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
|
496 |
+
<br />
|
497 |
+
<h3 style="padding-bottom: 10px;">Need help?</h3>
|
498 |
+
|
499 |
+
<p>
|
500 |
+
<span class="cff-support-title"><i class="fa fa-life-ring" aria-hidden="true"></i> <a href="https://smashballoon.com/custom-facebook-feed/docs/free/" target="_blank"><?php _e('Setup Directions'); ?></a></span>
|
501 |
+
<?php _e('A step-by-step guide on how to setup and use the plugin.'); ?>
|
502 |
+
</p>
|
503 |
+
|
504 |
+
<p>
|
505 |
+
<span class="cff-support-title"><i class="fa fa-question-circle" aria-hidden="true"></i> <a href="https://smashballoon.com/custom-facebook-feed/faq/" target="_blank"><?php _e('FAQs and Docs'); ?></a></span>
|
506 |
+
<?php _e('View our expansive library of FAQs and documentation to help solve your problem as quickly as possible.'); ?>
|
507 |
+
</p>
|
508 |
+
|
509 |
+
<div class="cff-support-faqs">
|
510 |
+
|
511 |
+
<ul class="cff-faq-col-1">
|
512 |
+
<li><b>FAQs</b></li>
|
513 |
+
<li>• <?php _e('<a href="https://smashballoon.com/category/custom-facebook-feed/faq/?cat=18" target="_blank">General Questions</a>'); ?></li>
|
514 |
+
<li>• <?php _e('<a href="https://smashballoon.com/category/custom-facebook-feed/getting-started/?cat=18" target="_blank">Getting Started</a>'); ?></li>
|
515 |
+
<li>• <?php _e('<a href="https://smashballoon.com/category/custom-facebook-feed/troubleshooting/?cat=18" target="_blank">Common Issues</a>'); ?></li>
|
516 |
+
<li style="margin-top: 8px; font-size: 12px;"><a href="https://smashballoon.com/custom-facebook-feed/faq/" target="_blank">See all<i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
|
517 |
+
</ul>
|
518 |
+
|
519 |
+
<ul>
|
520 |
+
<li><b>Documentation</b></li>
|
521 |
+
<li>• <?php _e('<a href="http://smashballoon.com/custom-facebook-feed/docs/wordpress/" target="_blank">Installation and Configuration</a>'); ?></li>
|
522 |
+
<li>• <?php _e('<a href="https://smashballoon.com/custom-facebook-feed/docs/shortcodes/" target="_blank">Shortcode Reference</a>', 'custom-facebook-feed'); ?></li>
|
523 |
+
<li>• <?php _e('<a href=https://smashballoon.com/category/custom-facebook-feed/customizations/snippets/?cat=18" target="_blank">Custom CSS and JavaScript Snippets</a>'); ?></li>
|
524 |
+
<li style="margin-top: 8px; font-size: 12px;"><a href="https://smashballoon.com/custom-facebook-feed/docs/" target="_blank">See all<i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
|
525 |
+
</ul>
|
526 |
+
</div>
|
527 |
+
|
528 |
+
<p>
|
529 |
+
<span class="cff-support-title"><i class="fa fa-envelope" aria-hidden="true"></i> <a href="http://smashballoon.com/custom-facebook-feed/support/" target="_blank"><?php _e('Request Support'); ?></a></span>
|
530 |
+
<?php _e('Still need help? Submit a ticket and one of our support experts will get back to you as soon as possible.<br /><b>Important:</b> Please include your <b>System Info</b> below with all support requests.'); ?>
|
531 |
+
</p>
|
532 |
+
</div>
|
533 |
+
|
534 |
+
<hr />
|
535 |
|
|
|
536 |
<h3><?php _e('System Info <i style="color: #666; font-size: 11px; font-weight: normal;">Click the text below to select all</i>', 'custom-facebook-feed'); ?></h3>
|
537 |
|
538 |
<?php
|
custom-facebook-feed.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
Plugin Name: Custom Facebook Feed
|
4 |
Plugin URI: http://smashballoon.com/custom-facebook-feed
|
5 |
Description: Add completely customizable Facebook feeds to your WordPress site
|
6 |
-
Version: 2.4.
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
10 |
Text Domain: custom-facebook-feed
|
11 |
*/
|
12 |
/*
|
13 |
-
Copyright
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License as published by
|
16 |
the Free Software Foundation; either version 2 of the License, or
|
@@ -24,7 +24,7 @@ along with this program; if not, write to the Free Software
|
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
|
27 |
-
define('CFFVER', '2.4.
|
28 |
|
29 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
30 |
//Include admin
|
3 |
Plugin Name: Custom Facebook Feed
|
4 |
Plugin URI: http://smashballoon.com/custom-facebook-feed
|
5 |
Description: Add completely customizable Facebook feeds to your WordPress site
|
6 |
+
Version: 2.4.6
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
10 |
Text Domain: custom-facebook-feed
|
11 |
*/
|
12 |
/*
|
13 |
+
Copyright 2017 Smash Balloon LLC (email : hey@smashballoon.com)
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License as published by
|
16 |
the Free Software Foundation; either version 2 of the License, or
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
|
27 |
+
define('CFFVER', '2.4.6');
|
28 |
|
29 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
30 |
//Include admin
|