Latest WordPress Plugins For Stronger Your Project

We can’t deny that WordPress is the biggest open source content management system. It empowers a number of newly developed websites. Today there are billions of users that take their business online with the help of WordPress websites. To keep growing with this pace, WordPress keep launching new techniques that the developers need to learn. One of the launches of WordPress Plugins that plays an important role in customization.

Why WordPress Plugins need attention?

From the quick upload of a website to boosting the server’s performance and securing the website to tracking the performance, Plugins help to optimize your website. Some plugins can help you save time in complex coding while some help you to back up your site now and then to avoid any malfunctioning.

Plugins are as important as an internet connection to a website. Recently, WordPress has launched the following plugins that can help you to create the epitome of a website:

1) OpenId Connect Single Sign On(SSO) By Gluu: This Plugin helps you to authenticate users against any OpenID connect. Once the user has login to the server, the module starts a chain that visits the Single Sign On script of each website. The plugin then sends notification via cookie to the parent site so that if the user visit the site again, the cookie gets notified by the real site and user shall be automatically logged out.

2) MMWD Custom Login Error: It is mainly for the hackers. Whenever a user logs in with the incorrect information, the error doesn’t display whether it was password or the user-name that went wrong.

3) Taxonomy Admin Filter: It really gets hectic to scroll down the tags and look for the desired information. With Taxonomy filter, it gets easier to select, choose and search the tags.

4) WP Suite: Worker: With this plugin, one can check the events and actions on the website with an ease, increases security of the website and create a backup. Also, it helps in Instancing, Automation, Updation, Benchmarking and logging the events.

5) User Menus by Jungle Plugins: This particular plugin shows the username, first name, last name, and email in a menu item to enable you to adress your customers with pleasantries.

6) MWP Viral Sign-up: This plugin lets you to create an easy sign-up process with limited spaces filled by the customers. It enables the viral sharing through referrals and with a promise of an incentive.

7) Stomp: This plugin prevents the gap between bottom of a visible page and the footer element. It fixes the footer to the base of page.

8) Login Watchdog: It records every time a user fails to attempt the login and after severalz of attempts, Login Watchdog blocks the IP address of that particular system.

9) Chat2: Allows you to add a chat option in your website to interact with customers on real-time basis.

10) Darwin Backup: Finally a plugin that relieves you from the tensions of data loss or any severity. You no more need the special team of developers to fix the loss. Just click on Darwin Backup and the information is restored. Currently, it’s unsupportive of timely backups but still extremely useful.

11) Twitter feeds and Pins, Insta, Facebook Widget: These widgets lets you add the fun of social networking on your website. Every time you post anything about your product or blog, it gets notified by your followers and you will also receive notifications you are following to.

12) Windsor Strava: Helps to showcase information like your profile, followers, statistics and many more with a simple shortcode.

13) SerwerSMS.pl: This plugin allows you to store the contact number in its database so that you can send information via messages when needed.

How To Install These Plugins!

Adding these plugins into your website is like plain sailing. Some of the plugins are already stored with WordPress. You just need to go to the dashboard, click on plugin, search for the plugin you need and install it. You are ready with your new plugin. Other few plugins you need to upload in your plugin directory and then install it.

Every day, or sometimes in every hour, one or more than one plugin is developed. Just keep a track if you are a WordPress user and need your website to out-compete the rest of website in your niche!

Author Bio :

Sophia is a renowned WordPress developer by profession and likes to share here experience through blogging. She can be a great resource for those who are looking to WordPress Developer for hire in USA , then you can get in touch with her.

Social Profile :   Facebook    Twitter

8 Best PHP Cheat Sheets For Developers

Web development is now getting very much important in these days.Well this is not an easy task to be a web developers.It needs a lots of hard work.For creating a dynamic website PHP is the first choice for the developers. No doubt PHP is beneficial for the developers because it supports them to create attractive web pages.

Here in this article we have put together a list of 8 best PHP cheat sheets for quick development.

Best PHP Cheat Sheets 

PHP Cheat Sheet | OverAPI.com

php-cheat-sheets-1

Source

 

PHP Cheat Sheet | DaveChild

This PHP cheat sheets is a quick reference guide for PHP, with functions references, a regular expression syntax guide and a reference for PHP’s date formating functions. As of 28/6/14, the cheat sheet now includes popup links to the appropriate PHP manual pages.

php-cheat-sheets-2

Source

 

Security Cheat Sheets

php-cheat-sheets-3

Source

 

PHP Variable Cheat Shets

php-cheat-sheets-4

Source

 

PHP Reference Sheets Basics

PHP Reference Sheet Basics can be downloaded for free. This includes syntax and information for commonly used tasks, syntax, and more.

php-cheat-sheets-5

Source

 

PHP: Functions

A function is actually a collection of code that is known from any point in a script after it has been announced. It is actually a compartmentalized PHP script created to complete a single task.

php-cheat-sheets-6

Source

 

PHP PCRE Cheat Sheet

php-cheat-sheets-7

Source

 

PHP & MYSQL For Dummies

php-cheat-sheets-8

Source

 

5 PHP MUST WANTED CODE SNIPPETS FOR EVERY WEB DEVELOPERS NEED

Every web developer should keep useful code snippets in a personal library for future reference.In this post we will show you some useful code snippets of PHP which will help you for your future projects.

TOP 5 PHP MUST WANTED CODE SNIPPETS FOR EVERY WEB DEVELOPERS NEED

Show Number Of People Who Liked Your Facebook Page

function fb_fan_count($facebook_name)
{
    $data = json_decode(file_get_contents("https://graph.facebook.com/".$facebook_name));
    $likes = $data->likes;
    return $likes;
}

SyntaX

<?php
$page = "smartwebcare";
$count = fb_fan_count($page);
echo $count;
?>

Sending an Email With MANDRILL

For the below function you would have to put a file “Mandrill.php” in the same folder as the PHP file you would be using to send emails.

function send_email($to_email,$subject,$message1)
{
	require_once 'Mandrill.php';
$apikey = 'XXXXXXXXXX'; //specify your api key here
$mandrill = new Mandrill($apikey);
 
$message = new stdClass();
$message->html = $message1;
$message->text = $message1;
$message->subject = $subject;
$message->from_email = "blog@smartwebcare.com";//Sender Email
$message->from_name  = "Smart Web Care";//Sender Name
$message->to = array(array("email" => $to_email));
$message->track_opens = true;
 
$response = $mandrill->messages->send($message);
}

In the above code you would have to specify your own api key that you get from your Mandrill account.

Syntax

<?php
$to = "abc@smartwebcare.com";
$subject = "This is a test email";
$message = "Hello World!";
send_email($to,$subject,$message);
?>

Zipping a File

function create_zip($files = array(),$destination = '',$overwrite = false) {  
    //if the zip file already exists and overwrite is false, return false  
    if(file_exists($destination) && !$overwrite) { return false; }  
    //vars  
    $valid_files = array();  
    //if files were passed in...  
    if(is_array($files)) {  
        //cycle through each file  
        foreach($files as $file) {  
            //make sure the file exists  
            if(file_exists($file)) {  
                $valid_files[] = $file;  
            }  
        }  
    }  
    //if we have good files...  
    if(count($valid_files)) {  
        //create the archive  
        $zip = new ZipArchive();  
        if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {  
            return false;  
        }  
        //add the files  
        foreach($valid_files as $file) {  
            $zip->addFile($file,$file);  
        }  
        //debug  
        //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;  
          
        //close the zip -- done!  
        $zip->close();  
          
        //check to make sure the file exists  
        return file_exists($destination);  
    }  
    else  
    {  
        return false;  
    }  
}

Syntax

<?php
$files=array('file1.jpg', 'file2.jpg', 'file3.gif');  
create_zip($files, 'myzipfile.zip', true); 
?>

PHP Snippets For Directory Listing

Using the below PHP code snippet you would be able to list all files and folders in a directory.

function list_files($dir)
{
    if(is_dir($dir))
    {
        if($handle = opendir($dir))
        {
            while(($file = readdir($handle)) !== false)
            {
                if($file != "." &amp;&amp; $file != ".." &amp;&amp; $file != "Thumbs.db"/*pesky windows, images..*/)
                {
                    echo '<a target="_blank" href="'.$dir.$file.'">'.$file.'</a><br>'."n";
                }
            }
            closedir($handle);
        }
    }
}

Syntax

<?php
    list_files("images/"); //This will list all files of images folder
?>

Creating  A CSV File From PHP ARRAY

function generateCsv($data, $delimiter = ',', $enclosure = '"') {
   $handle = fopen('php://temp', 'r+');
   foreach ($data as $line) {
		   fputcsv($handle, $line, $delimiter, $enclosure);
   }
   rewind($handle);
   while (!feof($handle)) {
		   $contents .= fread($handle, 8192);
   }
   fclose($handle);
   return $contents;
}

Syntax

<?php
$data[0] = "apple";
$data[1] = "oranges";
generateCsv($data, $delimiter = ',', $enclosure = '"');
?>

 

5 jQuery UI Frameworks for Web Developers

jQuery is a very powerful tool.It is a lightweight, cross-browser compliant, incredibly awesome and extremely powerful JavaScript framework (library) that emphasizes and simplifies interaction between JavaScript, CSS and HTML.jQuery UI is the collection of animated visual effects, themes and GUI widgets. jQuery along with jQuery UI are the open source and free software that are distributed by jQuery Foundation.

In this article we have put together a list of Best jQuery UI Frameworks which help to create useful and innovative mobile applications for your clients.

 jQuery UI Frameworks for Developers

jQUery UI

jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you’re building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is the perfect choice.The notable components of the jQuery UI are Tree View, Combo and Form Widgets, Color Picker, Charts, File Uploader, RTL Support and Validation.

jquery-ui-1

View Details

 

Kendo UI

Kendo UI is popular and widely used framework for building mobile web applications easily, this is an advanced mobile framework that is used for building native-like mobile apps and website.There are full sets of powerful HTML5 widgets and interactions. These sets can either be used in combination or single in order to create the interaction for application development.

jquery-ui-2

View Details

 

Wijmo

Wijmo is a line of HTML5 and JavaScript products for enterprise application development. Wijmo widgets are optimized for client-side web development and utilize the power of jQuery for superior performance and ease of use.This UI is optimized in such a way that it became a useful client-side web development tool. This tool utilizes the power of jQuery and delivers superior performance.

jquery-ui-3

View Details

 

JQuery Easy UI

jQuery EasyUI provides easy to use components for web developers, which is built on the popular jQuery core and HTML5. These make your applications suitable for today’s web. It is regarded as the feature-rich widget that has lot of interactive components. These components are based on popular jQuery codes and HTML5. Few of the essential most important features of this UI are Panel, Layout, Window, which are the UI design widgets.

jquery-ui-4

View Details

 

PrimeUI

PrimeUIPrimeUI is a collection of rich javascript widgets based on jQuery UI. PrimeUI is a spin-off from the popular JavaServer Faces Component Suite.Prime UI has more than 35 jQuery based widgets. It is powered by HTML5 and it contains ThemeRoller to offer you great themes for your website.

jquery-ui-5

View Details

 

Optimize WordPress – Seven Ways to Optimization your WordPress Site for Speedup

Having a website is no laughing matter. It requires knowledge, hard work, efforts and of course, patience. In order to convert your website into an online business, you need to improve your website’s visitor count. However, the ever-growing competition in the market makes it quite hard for websites to keep up with the latest trend of the web industry and soon fall out.

There are various things that play an important role in optimizing your website for search engine and thus, drive traffic to your website including on-page SEO, easy user navigation, SEO-friendly URLs and much more. However, speed is one of the most important things that determine the success of your online business. As a matter of fact, a web user tends to navigate away from a website if it does not load in less than 5 seconds.

Being a webmaster, you usually install many plugins and widgets in order to make your WordPress website stand out. Although you often forget that these plugins are quite heavy and take a lot of space on your hosting server while making your website slow.

Website speed is a crucial point and thus, should be well taken care of.

Therefore, we have compiled a list of 7 most effective ways to optimize your WordPress website for speed.

WordPress Optimization

1. Use a caching plugin

There is no denying in the fact that WordPress plugins are extremely beneficial. However, the best plugins by far are certainly caching ones. These plugins automatically improve the speed of your website by 90%.

One of the best caching plugins is W3 Total Cache. Simply install and activate and you are all set to run a fast loading website.

2. Optimize images

As a matter of fact, images are quite heavy and they apparently make your website slow. In addition, using more than 3 images per blog posts makes your website heavy to load. Therefore, it becomes all the more important to compress your images to improve the speed of the site. However, compressing each image is definitely one heck of a job, and significantly time-consuming. Fortunately, WordPress offers one free plugin to optimize your images automatically – WP-SmushIt.

3. Optimize your homepage

The homepage is one of the most important pages of any website. This is the first page that a user usually sees. In fact, for a majority of websites, the homepage is usually their landing page which drives a large number of visitors to the website. Therefore, it is important to put all of your efforts in improvising the speed of your homepage. There are a lot of things that you can do to optimize the speed of your homepage including reducing the number of posts on the homepage, showing excerpts instead of full posts, removing unnecessary widgets and uninstalling inactive plugins. The bottom line is that you should keep your homepage as focused and clean as possible.

4. Adding Expires header

The whole concept of expires header is introduced to reduce server load and consequently increase page load time. These headers notify the browser whether they must ask a specific file from the server or they should just load it from the browser’s cache. This also reduces the number of HTTP requests from the server.

The best way to make it work is to copy and paste this below mentioned lines of code in your .htaccess file.

ExpiresActive On

ExpiresByType image/gif A2592000

ExpiresByType image/png A2592000

ExpiresByType image/jpg A2592000

ExpiresByType image/jpeg A2592000

The above code sets the expires header for a month which can be changed according to your preferences and needs.

5. Turn off Trackbacks and Pingbacks:

Trackbacks and pingbacks are a great way to know that a blog or website is linked to your site. Whenever a blog mentions you, it automatically indicates you about the activity with the help of trackback. Since it informs about every backlink related activity, it saves the data on the server which increases a lot of work for your website. Turning trackbacks and pingbacks off reduces the workload and thus improving the load speed of the site.

Note: Turning this off does not devastate your back-linking. It only reduces your website’s workload.

6. Minify JavaScript, CSS and HTML

Minification is basically a process of removing all the unnecessary characters and spaces from the code without making any modification in the functionality. Though tabs and whitespaces usually make code understandable and readable for servers and humans, it increases the page load time. Therefore, minifying your JavaScript, CSS and HTML files can improve the load time significantly. Instead of scanning your files one by one, you can make use of various useful plugins such as W3 Total Cache and WP Minify to make the process of minification easier and convenient.

7. Make use of CloudFlare

CloudFlare is one of the best and free ways to improve the security of your website. It is basically a content delivery network that sits between your hosting server and visitors. You can not only protect your site from unwanted visitors but also improves the speed of your site. The combination of CloudFlare and W3 Total Cache works wonders to a website performance.

Wrapping up:

These are some of the tested and proven ways to effectively speed up your website. If you have any other way to improve WordPress website’s speed, don’t forget to share with us.