20 Best WordPress Facebook Plugins and Widgets

Tuesday, February 28, 2017

Facebook is the most popular social network today and connecting it to your website and business can make a huge difference. Facebook pages and social shares can have a huge impact on your sales. Also, within your website, you can add various widgets or shortcodes, buttons, etc. that link back to your Facebook page. Also, you can check comments or insert them into your website, all to make things easier.

You should take advantage of the power of Facebook and make it easy for your users to comment, share and like your website. You can do this by adding various widgets, shortcodes, and social share buttons to your site.

Connecting Facebook to your WordPress website can be done fast and easily. You just have to download the plugin and add it to your website. To make things even easier for you, we looked for the best WordPress Facebook plugins and widgets that you can use right away. Take a look at what they offer and use them for your website.

Add Link to Facebook

Use this great WordPress plugin to automatically add links to your Facebook pages, groups, etc. that link back to any post that you have previously published.

Add-Link-to-Facebook-—-WordPress-Plugins

Recent Facebook Posts

Check out this useful WordPress plugin and use it to list your most recent posts from public pages on Facebook.

Recent-Facebook-Posts-—-WordPress-Plugins

Facebook All

Take a look at this amazing WordPress plugin and use it to make your blog connected to Facebook and Google. Your visitor will be able to log in using their accounts from social media.

Facebook-All-—-WordPress-Plugins

Facebook Like Button

This is a very useful plugin that allows you to add a Facebook button that you can use to follow, like, and share to your WordPress posts, pages, and widgets.

Facebook-Button-by-BestWebSoft-—-WordPress-Plugins

Nextend Facebook Connect

This is a great WordPress plugin that you can use for Facebook. This plugin has an easy installation and it includes full support.

Nextend-Facebook-Connect-—-WordPress-Plugins

Facebook Comments

You can use this neat plugin to manage your Facebook comments directly from your WordPress website.

Facebook-Comments-—-WordPress-Plugins

Facebook Likebox Slider by ARScode

Facebook Likebox Slider is a flexible plugin with Facebook faces, stream and header. Very easy to install and configure with nice design.

Facebook-Likebox-Slider-b

IK Facebook Feed Plugin

Chek out this great WordPress plugin that you can use to add feeds and photos from any Facebook page, instantly into your WordPress site.

Facebook-Plugin_-WP-Social-—-WordPress-Plugins

Custom Facebook Feed

Take a look at this plugin that lets you display fully customizable Facebook feeds from any of your pages into your WordPress website.

Custom-Facebook-Feed-—-WordPress-Plugins

JSL3 Facebook Wall Feed

Check out this WordPress plugin that turns your Facebook wall into a widget or a shortcode on a page. Take a look and see if it is useful to your website.

JSL3-Facebook-Wall-Feed-—-WordPress-Plugins

SEO Facebook Comment

If you have a WordPress website, you can use this great plugin to expand your site’s functionalities. This plugin is useful for inserting all Facebook comments into your WordPress website to improve your SEO.

SEO-Facebook-Comment-—-WordPress-Plugins

NextGEN Facebook Open Graph+

Here is a lovely WordPress plugin that you can use for your WordPress website. This lets you use complete meta tags for the best shares from Facebook, Google, Pinterest, Twitter, etc.

NextGEN-Facebook---Social-Meta-Tags-for-Facebook,-Google,-Pinterest,-Twitter-&-M

Facebook Members

Check out this amazing WordPress plugin that lets you easily bring Facebook LikeBox and the recommendation bar functionalities to your website.

Facebook-Members-—-WordPress-Plugins

Facebook Vinyl

Take a look at this great plugin that you can use in your WordPress website. This plugin allows you to integrate Facebook’s albums into your website.

Facebook-Vinyl-—-WordPress-Plugins best WordPress Facebook plugins

Tawea Facebook Chat

This is a great WordPress plugin that connects your website with Facebook. This plugin lets you add a Facebook chat directly into your website.

Facebook-Chat-—-WordPress-Plugins

Monarch

This is a great plugin that you can use for your WordPress website. This allows you to use a Monarch widget that contains popular social icons.

 best WordPress Facebook plugins -Better-Social-Sharing-Plugin-For-WordPress-_-Elegant-The

Jetpack

Check out this wonderful WordPress plugin that you can use to add a Facebook widget inside your website. Take a look!

Jetpack-for-WordPress

Simple Facebook Plugin

Check out this neat plugin that you can use to successfully insert a Facebook connection into your website. This allows you to promote your page and get more visitors.

Simple-Facebook-Plugin-—-WordPress-Plugins

Facebook Group Widget

Take a look at this amazing Facebook widget that works for all public groups, is fully responsive, can be customized, and it is very easy to use.

Facebook-Group-Widget-Preview---CodeCanyon

WPsite Follow Us Badges

Here is a great plugin that you can add to your WordPress website that allows you to show your Facebook, Twitter, Google+, LinkedIn, and other social media badges.

Follow-Us-Badges-— best WordPress Facebook plugins

The post 20 Best WordPress Facebook Plugins and Widgets appeared first on Line25.



Source: http://ift.tt/2m450GE

20 Useful .htaccess Code Tricks & Tips

It is very important that all web admins understand and know how to successfully manage the .htaccess file. This file is mainly responsible for steering your website’s directories, but its functionalities can be extended by adding various lines of code.

We created an excellent collection of 20 useful .htaccess code snippets. These will improve your website and ease your work. Take a look at all of these .htaccess code snippets and see which one you can add to your website.

You can find .htcaccess code snippets about various topics such as iPad detection, error pages, Favicon requests, protecting folders with a password, PHP error logging, 301 redirects, image hotlinking, set expires, append/prepend files, and more.

These code snippets will save a lot of time and effort.  Check them out and don’t forget to backup your .htaccess file before trying any of these.

Custom Error Pages

Check out this great code snippet that you can use to create custom error pages. Just add the code and you will instantly get the results that you want.

ErrorDocument 400 /400.html
ErrorDocument 401 /401.html
ErrorDocument 403 /403.html
ErrorDocument 404 /404.html
ErrorDocument 405 /405.html
ErrorDocument 408 /408.html
ErrorDocument 414 /414.html
ErrorDocument 500 /500.html
ErrorDocument 502 /502.html
ErrorDocument 504 /504.html

Force Favicon Requests to Correct Location

You can use this code snippet for those times when you need to request a web server for a specific favicon. This snippet saves you a lot of time and effort. Try it out!

# REDIRECT FAVICON.ICO
<ifmodule mod_rewrite.c>
RewriteCond %{REQUEST_URI} !^/favicon\.ico [NC]
RewriteCond %{REQUEST_URI} favicon\.ico [NC]
RewriteRule (.*) http://ift.tt/2mBqecC [R=301,L]
</ifmodule>

Force Files to Download (Not Open in Browser)

Here is a very useful code snippet for those times when you want to force the files that you download not to open in your browser. Take a look!

AddType application/octet-stream .csv
AddType application/octet-stream .xls
AddType application/octet-stream .doc
AddType application/octet-stream .avi
AddType application/octet-stream .mpg
AddType application/octet-stream .mov
AddType application/octet-stream .pdf

iPad Detection

Check out this great code snippet that you can use to detect a specific version for iPad. This code lets you easily identify exactly what you are looking for.

RewriteCond %{HTTP_USER_AGENT} ^.*iPad.*$
RewriteRule ^(.*)$ http://ift.tt/2m49TPX [R=301]

Password Protect Folder(s)

Use this great code snippet to protect your folders with any password that you find fitting. You can also use this kind of protection for all the subfolders.

AuthType Basic
AuthName "This Area is Password Protected"
AuthUserFile /full/path/to/.htpasswd
Require valid-user

PHP Error Logging

Here is a very useful code snippet that logs errors to any file that you choose. Take a look and see if you can use it for your website. All you need to do is to copy – paste this snippet.

# display no errs to user
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
# log to file
php_flag log_errors on
php_value error_log /location/to/php_error.log

Temporary Maintenance using Mod_Rewrite

You can use this code lines to rapidly take down a website for maintenance purposes. You will be the only one to see the content of the website, and others will be redirected.

# Don't forget to turn on the rewrite engine
RewriteEngine on

# Maintenance Redirection
# Replace 555\.555\.555\.555 with your own IP address
# Uncomment first conditional to turn off the redirection
# RewriteCond %{REQUEST_URI} ^$a
RewriteCond %{REQUEST_URI} !maintenance.html
RewriteCond %{REQUEST_FILENAME} !(styles|images).+$
RewriteCond %{REMOTE_ADDR} !^555\.555\.555\.555$
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1$
RewriteRule (.*) /maintenance.html [R,L]

Prevent Image Hotlinking

Check out this great code snippet that l=shows you how to successfully prevent image hotlinking. This makes possible that any image that has a link from any place else than your own website to automatically redirect to a custom graphic that you choose.

RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?yourdomain\.com/ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*\.(jpg|gif|bmp|png)$ /images/dontsteal.jpg [L]

301 Redirects

This is an excellent code snippet that helps you effortlessly redirect an URL. This is SEO friendly and very easy to use. Take a look and use it for your website.

Redirect 301 /oldpage.html http://ift.tt/1DVD2fA
Redirect 301 /oldpage2.html http://ift.tt/1oLxJJF

Append / Prepend Files

You can use this great code snippet to append/prepend files. Take a look at what it actually does by adding it to your website. Try it out for yourself!

php_value auto_prepend_file "/real/path/to/file/functions.php"
php_value auto_append_file "/real/path/to/file/footer.php"

Allow Single URL Through .htaccess Password Protection

Here is another useful code snippet that can be used for staging, production, etc. This lets you maintain your .htaccess files in sync at the same time having a .htpasswd on your development environment.

#allows a single uri through the .htaccess password protection
SetEnvIf Request_URI "/testing_uri$" test_uri

#allows everything if its on a certain host
SetEnvIf HOST "^testing.yoursite.com" testing_url
SetEnvIf HOST "^yoursite.com" live_url
Order Deny,Allow

AuthName "Restricted Area"
AuthType Basic
AuthUserFile /path/to/your/.htpasswd
AuthGroupFile /
Require valid-user

Different Directory Index Page

Here is a simple code line that does a big job. This lets you instantly change your directory index page very fast and easy. Take a look and try it for yourself!

DirectoryIndex index2.html

Force Correct content-type for XHTML Documents

If your server doesn’t serve the XHTML content as text or as HTML, you can use this code lines to rectify it. All you need to do is to copy-paste this coded and your problem is solved.

RewriteEngine On
RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml
RewriteCond %{HTTP_ACCEPT} !application/xhtml\+xml\s*;\s*q=0
RewriteCond %{REQUEST_URI} \.html$
RewriteCond %{THE_REQUEST} HTTP/1\.1
RewriteRule .* - "[T=application/xhtml+xml; charset=ISO-8859-1]"

Serve SVG with the Correct Content Type

Here is a very useful code line that helps you to serve SVG with the correct content type. Take a look and see exactly what it can do for your website.

AddType image/svg+xml .svg .svgz

Set Expires

Here is a great code snippet that allows your browser to use the cache for specific operations. Check it out and see how it can ease your work.

# BEGIN EXPIRES
<IfModule mod_expires.c>
 ExpiresActive On
 ExpiresDefault "access plus 10 days"
 ExpiresByType text/css "access plus 1 week"
 ExpiresByType text/plain "access plus 1 month"
 ExpiresByType image/gif "access plus 1 month"
 ExpiresByType image/png "access plus 1 month"
 ExpiresByType image/jpeg "access plus 1 month"
 ExpiresByType application/x-javascript "access plus 1 month"
 ExpiresByType application/javascript "access plus 1 week"
 ExpiresByType application/x-icon "access plus 1 year"
</IfModule>
# END EXPIRES

Subdirectories URL Internally Redirect to Query String

This is a useful code snippet that redirects to Query string all the URL subdirectories. Try it out for your website and see what it can do for you!

RewriteEngine on
RewriteRule ^index/([^/]+)/([^/]+).php /page.php?search=$1&sort=$2 [NC]

 Use PHP inside JavaScript

This neat code snippet allows your browser to interpret a file as JavaScript. Check out the full code lines and add them to your website.

<FilesMatch "^.*?api.*?$">
SetHandler php5-script
</FilesMatch>

Fancy Indexing

Use this next code snippet in your websites to add specific features such as fonts, size, date, etc. Take a look at the example and see if it suits your website.

IndexOptions FancyIndexing
IndexOptions FoldersFirst
IndexOptions NameWidth=*

Denying and Allowing Access

This is a great code snippet that you can use to deny or allow access to specific IPs. Check it out and try it on your website for this effect. Enjoy!

Order deny,allow
Deny from All
Allow from xxx.xxx.xxx.xxx
Allow from xxx.xxx.xxx.xxy

Active Gzip Compression

Use compression to diminish the response of the HTTP by reducing the size. Gzip allows you to successfully reduce the size by almost 70%.

# BEGIN GZIP
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</ifmodule>
# END GZIP

The post 20 Useful .htaccess Code Tricks & Tips appeared first on Web Design Blog | Magazine for Designers.



via http://ift.tt/2m49WLF

Design your way

An ideal website builder is affordable, easy to work with, and will give you practically limitless opportunities to transform your ideas and concepts into realities.

Not every affordable, easy-to-work-with design platform will allow wonderful things to happen however.

First and foremost, you want to select tools that don’t place limitations on your creativity. To avoid placing any unnecessary limitations on your design, there are several things to look for.

  • Pixel Level Design Control is a Must – Don’t limit yourself to using templates that feature a minimal amount of customization, e.g., changing colors, fonts, and backgrounds, but not much else.
  • Simple and Flexible Content Management – Since much of the work you do involves content, you want a tool that makes content modification and manipulation as easy as possible.
  • Mobile Site Design – The sites you build must play well on mobile. Otherwise, you risk losing 50% or more of your potential audience. In terms of SEO, correct display matters.
  • Widgets – Widgets make the difference between a humdrum website, and one that is rich in features and functionality.
  • Social Media Integration – Social media enables you to expand your brand as never before; especially among the mobile crowd. Insist on a social media integration capability – always.

These 10 Top Tools and Platforms Will Deliver What You Need

SnapPages

The SnapPages web design platform offers an ideal blend of simplicity and power. Instead of adding a long list of unnecessary features, the team at SnapPages has chosen to focus on what typical designers most want and need – a great website builder. The newest version, SnapPages 3.0, has been redesigned from the ground up to ensure that you have just the tools you need to create a modern, responsive website.

As far as simplicity is concerned, the editor is easy enough for anyone (yes, anyone!) to use. As the folks at SnapPages put it, building your website is essentially just a matter of ‘Drag, Drop, Done’. The design team has spent years developing 3.0 to ensure that your website building experience is the best that you can find on the market.

SnapPages offers many features that you’re bound to enjoy, such as exquisitely designed templates and their innovative page ‘Sections’ that allow you to create truly dynamic pages.
Unlike many of their competitors, SnapPages’ primary focus while developing SnapPages 3.0 was on the core website building experience, rather than needless add-on features. With that said, SnapPages still integrates easily with all the leading third-parties for add-ons.

Webflow

Webflow gives you the ability to develop responsive websites visually, so you can create production-ready code without hand-writing it. And this isn’t just another template-driven website builder, as you can start from a blank canvas and build exactly what you’re envisioning.

But Webflow’s also more than just a visual way to code — it also gives you the power to create a custom database for every website you create, and design around that real content.
That combination of visual design flexibility and an easy-to-customize CMS makes it a powerful tool for everyone from freelancers to in-house product designers.

Freelancers can build and launch a site without subcontracting a developer, while in-house teams use it to build fully functional, high-fidelity prototypes to hand off. Finally, it’s free to get started, so there’s nothing holding you back from discovering why over 500,000 designers count on Webflow.

Pixpa

Pixpa is a do-it-yourself website builder designed for creative professionals and small businesses looking to put together a website, without having to worry about any need for special technical or coding skills.

All Pixpa websites are responsive and search engine optimized. Pixpa also comes with integrated e-commerce and online client proofing tools to help you manage and grow your business.

Whether it’s a portfolio, an e-commerce store or a blog, it’s easy to build a professional website on Pixpa using its beautiful, customizable themes that help you get your projects off to a fast start.

A drag-and-drop interface, 24/7 support, fast hosting and affordable, cost-effective pricing makes Pixpa an indispensable tool for anyone looking to showcase, share and sell online with ease and style.

Themify Builder

Themify Builder is another drag and drop builder you can build beautiful pages with, without any need for coding. The Builder can be used as part of the Themify framework, or the Builder plugin can be used with third-party themes (it works with any theme).

More than 40 professional pre-designed layouts are included, the backend interface enables you to move modules around effortlessly, while the frontend mode lets you preview your design in real-time, WYSIWYG fashion.

Simbla Website Builder

This versatile platform enables you to create professional-looking websites and and database driven apps in a Bootstrap 3 environment. Simbla’s responsive templates and responsive website maker allow you to get your project up and running; and there are plenty of SEO, design, and development tools to see your project through to the end. With Simbla, it’s possible to build a code-free website in minutes. There’s nothing to install. Simply sign up, and you’ll be given instant access to your site.

Bookmark

Interested in what Artificial Intelligence can do for you?

Bookmark AI capabilities learn the needs and desires of Bookmark’s customers. This knowledge is then applied to create your perfect website.

Millions of combinations of data points are sampled to create a website characterized by a unique style, focus, and image. Watch the demo to view Bookmark ADI capabilities.

Simvoly

Simvoly is a platform designed to get a stunning website, online store, blog, or gallery up and running in no time at all. Simply select one of the beautifully-designed themes, put Simvoly’s drag and drop builder to work, and before you know it, you can start selling online. There are no transaction fees to deal with, your website is mobile friendly, and live chat support is there to help. Try the 14-day free trial to see for how smoothly and easily you can establish your online presence.

uCoz

Sometimes, you need to spend some time under the hood to create a website that really shines. With uCoz, you can edit HTML, CSS, and other codes, and take advantage of a rich set of features that compares nicely against any robust CMS.

uCoz provides the tools you need to create your own personal website. Sign up and try this free website builder out. Your email and a password are all you need to get started.

uKit

uKit is a modern website builder that was created with businesses in mind. This is a nice selection for novices who can do just fine by focusing on the visual aspects of building a website, without having to worry about the technical nitty-gritty. A wide selection of designer-produced themes is available. Select one, and everything is drag and drop. Your websites will be SEO and mobile friendly.

SITE123

SITE123 is for anyone and everyone. Whether you are a web designer, a baker, a blogger, or a plumber, just enter your content, and your website can be up and running.

SITE123’s system is easy to work with and it was built with amazing code that deliver great SEO results for any website.

You won’t be overloaded with options you don’t really need. The interface is intuitive, you get 24/7 support, you can manage your responsive website from your mobile device, and the website builder itself is free!

Something for everyone is a good selling pitch. In the case of these top tools and platforms, it happens to be true. Go down the list, and pick out what you need. There may well be more than one web design/development tool you’ll find helpful. You best bet however is to find what you can use and try it out. Prices range from affordable to free, so dive right in!



Source: http://ift.tt/2luAMti

20 Free WordPress Backup Plugins to Protect Against the Unexpected

Monday, February 27, 2017

You never know when something bad may happen to your website, that is why it is better to be safe than sorry! And what a better way to keep your website secure than to make sure that you have a copy of it stored in a safe place. This way, you can restore your website to any previous state that you have backed up.

To make it easy for you to back up your website, we looked for the best, free WordPress backup plugins you can download and use to protect your site against the unexpected.

These WordPress backup plugins come with easy and guided installations, many backup options and even premium features. You can choose the time of the backup by scheduling it, select which files you want to be stored, choose where to store them, do security scans, and more!

All of these plugins are easy to use solutions for backing up your website and making sure that you will never lose it due to hacking, bad updates or incompatibilities between the theme and the plugins. Browse through this collection, check out the plugins and download the one you see fit.

Backup & Restore Dropbox

Use this useful plugin to keep your data safe, no matter the situation. This Dropbox plugin helps you create a full backup (files and database) to make sure that you never lose anything.

Backup-&-Restore-Dropbox-Free WordPress Backup Plugins

WP-DBManager

Check out this neat WordPress plugin that you can use to optimize, repair, restore, delete, etc. your database. Check it out and see what it can do for you.

WP-DBManager-—-WordPress-Plugins

WPBackItUp

Use this neat WordPress plugin to protect your website against malware, hackers, etc. WPBackItUp saves your data to make sure everything is safe.

Backup-&-Restore-WPBackItUp-Free WordPress Backup Plugins

WP Database Backup

Take a look at this WordPress plugin that lets you back up your data. Use it to protect your website from the unexpected. Take a look and see its full features!

WP-Database-Backup-—-WordPress-Plugins

BackUpWordPress

BackUpWordPress is a neat WordPress plugin that has the following features: manages multiple schedules, exclude files and folders from your backups, and more.

BackUpWordPress-—-WordPress-Plugins

BackupGuard

Backup Guard is a great solution that helps you backup your website. This WordPress plugin lets you backup/migrate the data from your website.

Backup-Free WordPress Backup Plugins

WP Time Capsule

WP Time Capsule is a great WordPress plugin that lets you backup your data, but just the things that you have changed since your last backup. You can also schedule backups for your convenience.

WP-Time-Capsule-—-WordPress-Plugins

UpdraftPlus

Here is a useful WordPress plugin that automatically, or manually, backs up your whole website. Restore your backups straight from WordPress.

UpdraftPlus-WordPress-Backup-Plugin-—-WordPress-Plugins

BackWPup

Use this great WordPress plugin to backup your files in an easy and fast way. You can also schedule full backups and decide which content is saved to Dropbox.

BackWPup---WordPress-Backup-Plugin-—-WordPress-Plugins

Revisr

You can use this neat WordPress plugin to track changes that are made to your entire website or just some parts, backup or restore your full website, set up automatic backups, and more.

Revisr-—-WordPress-Plugins

Duplicator

This amazing WordPress plugin, as the name states, duplicates the content of your website and to move it entirely into any location that you choose.

Duplicator-—-WordPress-Plugins

MyRepono WordPress Backup Plugin

Here is a great WordPress backup plugin that lets you store your website’s information in a fast and easy way. Take a look and use it for your site.

myRepono-WordPress-Backup-Plugin-—-WordPress-Plugins

CYAN Backup

Check out this neat plugin that does a really great job by backing up your full WordPress website. You can also schedule a backup, at any time that you please.

CYAN-Backup-—-WordPress-Plugins

Keep Backup daily

This is another amazing WordPress plugin that helps you successfully backup up your complete website. Take a look and see what it has to offer!

Keep-Backup-Daily-—-WordPress-Plugins

S3Bubble Amazon S3 Backup

The S3Bubble Amazon Backup is a great WordPress plugin that has the following functions: secure installation process, scheduling, d, backup analytics, and more.

Free-Amazon-S3-Scheduled-Cloud-Backup-—-WordPress-Plugins

XCloner

Xcloner specializes in backing up your website information. You can do this by customizing the backup schedule to make it fit your program.

XCloner---Backup-and-Restore-—-WordPress-Plugins

WordPress Backup to Dropbox

Here is another wonderful WordPress backup plugin that you can use for your website. Take a look at its functions and see what it can do for you!

WordPress-Backup-to-Dropbox-—-WordPress-Plugins

VaultPress

Use this great plugin to successfully protect your website from any malware, viruses, user errors, hackers, etc. This plugin lets you backup your data and also scans your website.

VaultPress---WordPress-Backup-and-Security

WP Clone by WP Academy

This neat WordPress plugin offers great features that you can benefit from when backing up your website. You don’t need the FTP access to the destination site, this plugin backs up only the user content and the database, thus reducing the upload time, and more.

WP-Clone-by-WP-Academy-—-WordPress-Plugins

BackupBuddy

Check out this amazing plugin that you can use to back up your website and move it to another location. Take a look at its full functions and use it to secure your site.

WordPress-Backup-Plugin-_-BackupBuddy-from-iThemes-__-iThemes

The post 20 Free WordPress Backup Plugins to Protect Against the Unexpected appeared first on Web Design Blog | Magazine for Designers.



via http://ift.tt/2m1X9Kc
 

The Cash Box Blueprint

Most Reading