What's New Here?Subscribe to RSS feed
Remove admin color scheme picker from profile
Add this script to the functions.php of your wordpress theme will remove the admin color scheme picker from the profile page. if(is_admin()){ remove_action(“admin_color_scheme_picker”, “admin_color_scheme_picker”); }
How to check date if date is between two date
This function the return the true and false if date is exist or not exist. function dateWithin(StartDate,EndDate,CheckDate) { var b,e,c; s = Date.parse(StartDate); e = Date.parse(EndDate); c = Date.parse(CheckDate); if((c…
Error reporting and debugging in codeigniter
To Turn off Debugging Set the db_debug value(in the application/config/database.php config file) to false To Turn off Error reporting Set the Envirement value(in the top of the main index.php) to…






