Best WordPress CRM Plugins
Plugins, Wordpress

8 WordPress CRM Plugins to Grow Your Business

True customer relationship management (CRM) software helps you understand your customers and engage with them throughout the entire customer lifecycle. Here we are going to discuss 8 WordPress CRM Plugins that help you to grow your business. This is accomplished by collecting and analyzing lots of data. From prospecting to marketing to customer service, gathering and analyzing customer data can…

Continue Reading

WordPress Renaming admin menu items 1
Wordpress

WordPress customization part 3- Changing the order of dashboard menus

This is the 3rd part of wordpress customization series. Now we are going to change the order of wordpress dashboard menus. we can change the order using menu_order filter. Before using menu_order filter, we need to activate custom_menu_order first. Go to your functions.php file and put the following code. function custom_menu_dashbaord_order($menu_order) { if (!$menu_order) return true; return array( ‘index.php’, //…

Continue Reading

PHP, Plugins, Themes, Wordpress

WordPress customization part 1- removing menu from wordpress dashboard

This is the first part of wordpress customization series. In this tutorial i will discus about removing menu from wordpress  dashboard. Removing a menu from dashboard doesn’t means that the menu has removed forever but it is just hide from admin screen. WordPress is a very popular cms (Content Management System) that provide us a very usual and easy back end environment.…

Continue Reading

featured hooks
Plugins, Themes, Wordpress

WordPress Hooks and Filters introduction

WordPress hooks are predefined functions that provide the facility of attaching your custom php code to wordpress. You can change or modify the default behavior wordpress using Hooks. Custom functions are applied into action hooks or filter hooks. There are two types of wordpress Hooks. 1: Action hooks 2: Filter hooks   Action hooks are functions preformed when an event…

Continue Reading