Version Description
- Added clear fix
Download this release
Release Info
Developer | smashballoon |
Plugin | Custom Facebook Feed |
Version | 1.2.4 |
Comparing to | |
See all releases |
Code changes from version 1.2.3 to 1.2.4
- README.txt +10 -6
- css/style.css +5 -0
- custom-facebook-feed.php +1 -1
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: smashballoon
|
|
3 |
Tags: facebook, custom, customizable, feed, seo, search engine, responsive, mobile, shortcode, social, status
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.5.1
|
6 |
-
Stable tag: 1.2.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -42,11 +42,11 @@ If you have a Facebook page with a URL like this: `https://www.facebook.com/Your
|
|
42 |
|
43 |
= Are there any limitations on which page feeds I can display? =
|
44 |
|
45 |
-
The feed you
|
46 |
|
47 |
-
If your page has any restrictions on it (age, for example) then it means that people have to be signed into Facebook in order to view your page. This isn�t desirable for most pages as it means that it isn
|
48 |
|
49 |
-
An easy way to determine whether your page is set to public is to sign out of your Facebook account and try to visit your page. If Facebook forces you to sign in to view your page then it isn
|
50 |
|
51 |
= What's an Access Token and why do I need one? =
|
52 |
|
@@ -58,7 +58,11 @@ This plugin only allows you to display text updates from your feed. To display p
|
|
58 |
|
59 |
= Is the content of my feed crawlable by search engines? =
|
60 |
|
61 |
-
It sure is. Unlike other Facebook plugins which use iframes to embed your feed into your page once it
|
|
|
|
|
|
|
|
|
62 |
|
63 |
== Screenshots ==
|
64 |
|
@@ -70,7 +74,7 @@ It sure is. Unlike other Facebook plugins which use iframes to embed your feed i
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
-
= 1.2.
|
74 |
* Added clear fix
|
75 |
|
76 |
= 1.2.1 =
|
3 |
Tags: facebook, custom, customizable, feed, seo, search engine, responsive, mobile, shortcode, social, status
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.5.1
|
6 |
+
Stable tag: 1.2.4
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
42 |
|
43 |
= Are there any limitations on which page feeds I can display? =
|
44 |
|
45 |
+
The feed you're trying to display has to be a publicly accessible page. This means that you can't display the feed from your own personal profile or a group. This is to do with Facebook's privacy policies. You can�t display a non-public feed publicly.
|
46 |
|
47 |
+
If your page has any restrictions on it (age, for example) then it means that people have to be signed into Facebook in order to view your page. This isn�t desirable for most pages as it means that it isn't accessible by people who don't have a Facebook account and that your page can�t be crawled and indexed by search engines.
|
48 |
|
49 |
+
An easy way to determine whether your page is set to public is to sign out of your Facebook account and try to visit your page. If Facebook forces you to sign in to view your page then it isn't public. You can change your page to public in your Facebook page settings simply by removing any restrictions you have on it, which will then allow the Custom Facebook Feed plugin to access and display your feed.
|
50 |
|
51 |
= What's an Access Token and why do I need one? =
|
52 |
|
58 |
|
59 |
= Is the content of my feed crawlable by search engines? =
|
60 |
|
61 |
+
It sure is. Unlike other Facebook plugins which use iframes to embed your feed into your page once it's loaded, the Custom Facebook Feed uses PHP to embed your feed content directly into your page. This adds dynamic, search engine crawlable content to your site.
|
62 |
+
|
63 |
+
= Can I prevent my comments on posts from displaying in the feed? =
|
64 |
+
|
65 |
+
Yep. Comments will show up if you use the Access Token from an account which has adminstrative rights to your page (such as an owner or administrator). To prevent your comments showing up you need to sign up for a new Facebook account which is not associated with your page, register as a developer with this new account, and then use that Access Token to display your feed.
|
66 |
|
67 |
== Screenshots ==
|
68 |
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= 1.2.4 =
|
78 |
* Added clear fix
|
79 |
|
80 |
= 1.2.1 =
|
css/style.css
CHANGED
@@ -89,6 +89,11 @@
|
|
89 |
font-size: 11px;
|
90 |
}
|
91 |
|
|
|
|
|
|
|
|
|
|
|
92 |
/* Like box */
|
93 |
#cff .cff-likebox{
|
94 |
float: left;
|
89 |
font-size: 11px;
|
90 |
}
|
91 |
|
92 |
+
|
93 |
+
/************/
|
94 |
+
/*** MISC ***/
|
95 |
+
/************/
|
96 |
+
|
97 |
/* Like box */
|
98 |
#cff .cff-likebox{
|
99 |
float: left;
|
custom-facebook-feed.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Custom Facebook Feed
|
4 |
Plugin URI: http://smashballoon.com/custom-facebook-feed
|
5 |
Description: Add a completely customizable Facebook feed to your WordPress site
|
6 |
-
Version: 1.2.
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
3 |
Plugin Name: Custom Facebook Feed
|
4 |
Plugin URI: http://smashballoon.com/custom-facebook-feed
|
5 |
Description: Add a completely customizable Facebook feed to your WordPress site
|
6 |
+
Version: 1.2.4
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|