How to add Password field in wp registration form without using any contribute plug-in? Step1: Call a custom function using the action ‘register_form‘ Step2: Add two input tags of type password in this custom function. Step3: Call another custom function using the Read More …
How to speedup my WordPress site
Million dollar question is “How to speedup my WordPress site”. If you are a WordPress developer and developing websites for your clients, then it is very obvious that you are getting lots of crazy requirements from your clients. Sometime these Read More …
Most common error by wordpress plug-in developer
There are several small small but serious mistacks done by most of the wordpress developer. Today I’ll discuss on adding js and css files in proper way and only in required page, this is the most common error by wordpress plug-in developer. Read More …
PHP CMS lists
Following are the PHP CMS list and their brief details. Name Supported databases Latest stable release Licenses Latest release date AdaptCMS Lite MySQL 2.0.1 GPL 2011-09-21 ATutor MySQL 2.0.3 GPL 2011-09-14 b2evolution MySQL 4.1.4 GPL 2012-04-06 BEdita MySQL 3.1.5 AGPL Read More …
How to know drupal version from fronend
Now our discussion topic is How to know drupal version from fronend? Do you want to know the Drupal version from the front-end of any Drupal website? Don’t worry not a big deal! Just try the below link it will give Read More …
How can we disable admin bar for all except admin
So now our discussion topic is “How can we disable admin bar for all except admin”, let us see the solution of this Paste this code in your theme’s functions.php file or your site-specific plugin. /* Disable WordPress Admin Bar Read More …
Think before install wordpress plugin
You should think before install wordpress plugin, You should ask yourself before installing a WordPress plugin Follow the below flow chart before install any wordpress plugin
CSS tips and tracks
1. Avoid CSS hacks, use future proof method We should avoid using hacks unless there are no other ways to fix it. Because, we will not able to know when those hacks will stop working. The most common way to Read More …
jQuery Tips & Tricks for jQuery Programmers
1. Set Context and improve the performance On the core jQuery function, specify the context parameter when. Specifying the context parameter allows jQuery to start from a deeper branch in the DOM, rather than from the DOM root. Given a Read More …
Customizing the new user email with a pluggable function
Yesterday I went through an odd requirement from my client, he wants to modify the message send to new registered user. Actually he wants to send the newly registered user’s activation link by which user can activate their account. WordPress Read More …