Simple Facebook Plugin – WordPress plugin Free download
Simple Facebook Plugin
Description
Description
Simple Facebook Plugin enables Facebook Page admins to promote their Pages and embed a simple feed of content from a Page into any WordPress blog. The Facebook Page Plugin enables users to:
See how many users already like this Page, and which of their friends like it too
Read recent posts from the Page
Like the Page with one click, without needing to visit the Page
See Page Events
Send messages to your Page*
*To enable messaging on your Facebook page go to your Page Settings. In the row Messages check Allow people to contact my Page privately by showing the Message button
You can easily integrate Like Box using WordPress Widgets and Shortcodes. Visit Plugin Page for more info and examples.
Our Premium Plugins
Smart Grid Gallery – Responsive WordPress Gallery
Smart Product Viewer – 360º Animation Plugin
Smart Before After Viewer – Image Comparison Plugin
Smart Photo Gallery – Responsive WordPress Gallery
Visit our CodeCanyon Portfolio to see plugins reviews and prices.
Screenshots



Installation
Installation
Upload simple-facebook-plugin
directory to your /wp-content/plugins
directory
Activate plugin in WordPress admin
Customization
In WordPress dashboard, go to Appearance > Widgets.
Drag and Drop SFP – Facebook Page Plugin into your sidebar.
Click triangle near SFP – Facebook Page Plugin header.
Enter your Facebook Page URL (not your profile URL).
Choose width, height and other options you like.
or
Use [sfp-page-plugin]
shortcode inside your post or page. This shortcode support all default parametrs:
url – any Fan Page URL (not your personal page!)
width – number (min 280, max 500)
height – number
hide_cover – true or false
show_facepile – true or false
small_header – true or false
timeline – true or false
events – true or false
messages – true or false
locale – valid language code (e.g. en_US or es_MX) see .xml file with all Facebook locales
If you want Page Plugin 320 pixels width and showing posts you need to use it next way:
[sfp-page-plugin width=320 show_posts=true url=http://www.facebook.com/yourPageName]
or
Use sfp_page_plugin()
template tag in your theme files.
<?php if ( function_exists("sfp_page_plugin") ) {
$args = array(
'url' => 'http://www.facebook.com/topdevs.net',
'width' => '300',
'hide_cover'=> true,
'locale' => 'en_US'
);
sfp_page_plugin( $args );
} ?>
FAQ
Installation Instructions
Installation
Upload simple-facebook-plugin
directory to your /wp-content/plugins
directory
Activate plugin in WordPress admin
Customization
In WordPress dashboard, go to Appearance > Widgets.
Drag and Drop SFP – Facebook Page Plugin into your sidebar.
Click triangle near SFP – Facebook Page Plugin header.
Enter your Facebook Page URL (not your profile URL).
Choose width, height and other options you like.
or
Use [sfp-page-plugin]
shortcode inside your post or page. This shortcode support all default parametrs:
url – any Fan Page URL (not your personal page!)
width – number (min 280, max 500)
height – number
hide_cover – true or false
show_facepile – true or false
small_header – true or false
timeline – true or false
events – true or false
messages – true or false
locale – valid language code (e.g. en_US or es_MX) see .xml file with all Facebook locales
If you want Page Plugin 320 pixels width and showing posts you need to use it next way:
[sfp-page-plugin width=320 show_posts=true url=http://www.facebook.com/yourPageName]
or
Use sfp_page_plugin()
template tag in your theme files.
<?php if ( function_exists("sfp_page_plugin") ) {
$args = array(
'url' => 'http://www.facebook.com/topdevs.net',
'width' => '300',
'hide_cover'=> true,
'locale' => 'en_US'
);
sfp_page_plugin( $args );
} ?>
I see the message “Error: Not a valid Facebook Page url.”. What am I doing wrong?
Page Plugin is only for Pages and not for Profiles, Events and Groups.