-
Recent Posts
Recent Comments
Archives
Categories
Meta
jQuery: Execute a callback once, after a class based animation completes
I was developing some web recently and ran into a jQuery problem that was new to me. I was using a class selector to fade a group of elements, and using a callback function which would fire after the fade … […] Continue reading
Posted in Googling for Answers, Web Development
Tagged jQuery
Display All Errors and Warnings in PHP
I find myself googling this up waaaaaaay too often, but there’s nothing unusual about that. I usually put this at the top of my code during development. [note color=”#DDD”]
1 2 |
error_reporting(E_ALL); ini_set('display_errors', '1'); |
[/note] Here’s another handy tip I picked up somewhere: If you’ve got … […] Continue reading
Posted in Googling for Answers, Web Development
Tagged php, web development
Getting this damn blog to look the way I wanted!
I don’t even know where to begin. First, finding a good theme to use as a starting point is HARD. Don’t let anyone tell ya different. Second, tweaking that theme (the right way) is not always easy. After hours of … […] Continue reading
Posted in Web Development
Tagged Child Theme, Wordpress
Missing Admin Bar in WordPress
I just installed Wordpress and after installing a theme I liked I noticed that it was missing the Admin Bar on the public portion of the site.
A quick google search turned up the answer in the Wordpress Support Forums: […] Continue reading
Posted in Googling for Answers, Web Development
Tagged Wordpress