WPMU DEV is one of the leading WordPress based product and service companies; and also where I have been working since 2013. From the beginning, WPMU DEV has contributed a lot to the WordPress community. Besides, they have some awesome products and services like Hustle, Hummingbird, Defender, WP Smush Pro, WP Academy, a really awesome… Continue reading My working experience at WPMU DEV
Category: Wordpress
Easiest but powerful encryption in PHP
For a secured system, most of the data is encrypted in server end and sent to database. And after fetching the data from database, just decrypt before showing in front end. There are lots of procedure to encrypt the data, lots of encryption algorithm out there. But, here we will use a simple encryption method… Continue reading Easiest but powerful encryption in PHP
Gulp tutorial for beginners
In a sentence, Gulp is a task runner. Gulp makes our life easier. In a development workflow, we need to do some tasks frequently and gulp can do some tasks automatically. Don’t think gulp is a replacement of grunt, but it is being improved very very fast. Gulp is a task/build runner for development. It… Continue reading Gulp tutorial for beginners
How to use SSL in localhost
There are lots of stuffs we need to test with SSL. There are some SSL providers that provide free SSL we can use those in our site. Among free SSL providers, I prefer to use CloudFlare, it’s very easy to use and nothing to setup though it needs ~24 hours to activate. Also, developers from… Continue reading How to use SSL in localhost
How to apply coupon automatically on WPMU membership2 checkout
Membership 2 is an awesome plugin to sell your content. That being said, you can charge your members to see your site content. If you want to give discount, you can use Coupon addon. You have to enable from Membership 2 > Addons and then you can create coupons and share with your users. Today… Continue reading How to apply coupon automatically on WPMU membership2 checkout
Assign a membership to a registered member automatically – Membership 2 (WPMU)
WPMU DEV has released the new revamped version for membership plugin, called Membership 2. The layout and interface is awesome of the plugin and I am personally impressed. There is a new type of membership introduced in the plugin – Default Membership. This membership will work for the user who are just registered but didn’t… Continue reading Assign a membership to a registered member automatically – Membership 2 (WPMU)
How to use custom post type archive as front page
We can easily set any page as front page from Settings > Reading. It can be any static page. But what if we want to set an archive or CPT archive page as front page? There are many ways to do so. We can create a custom page template, and write our code to get… Continue reading How to use custom post type archive as front page
Defer parsing of javascript to improve performance in wordpress
Nothing for introduction, hehe! A very small snippet which will help you to defer parsing all javascript files except jquery in wordpress. Here is the code: https://gist.github.com/bappi-d-great/2a67ff307db672d4566b You can add those codes in your functions.php in the theme, if you think your theme won’t be changed. Otherwise mu-plugins is the best solution. To use mu-plugins,… Continue reading Defer parsing of javascript to improve performance in wordpress
Why you shouldn’t use one click installer to install wordpress
Yes, you will fall at the mid-ocean, trust me! Well, most of the bloggers just maintain a simple blog so usually they don’t need to worry. They just need to keep a regular backup. But if you are planning to run a business site in wordpress and if that site is your everything, never ever… Continue reading Why you shouldn’t use one click installer to install wordpress
How to convert hexadecimal color value to RGB value in php
Most of the CMS provides a color picker in admin panel to user to choose a color. And almost all of the color pickers return the color code as hexadecimal mode, e.g. #4EE4D3. So, you can just get the value and set the color in css. For example: [php] body{ background: } [/php] This is… Continue reading How to convert hexadecimal color value to RGB value in php