…can you think of any job where people are making really complex things by hand, and which requires a ton of experience and training to be good at, yet everyone and their uncle has an opinion on how long a project should take to get done? Why is it that no matter how long a project takes, the customer always thinks it should be faster or cheaper?
I am not the right fit for every WordPress development project. When I have to turn down a prospective client project, I recommend another developer when possible.
Often I cannot think (or do not know) of a specific developer that meets the needs of the project. I want to be helpful, so I do the next best thing. I suggest three resources that list quality WordPress developers:
The specialized WordPress hosting service, WP Engine recently started their own consultants/developers list that includes specialties, bios, price-ranges and contact information. The consultants/developers WP Engine lists are hand-picked as resources to recommend to their own hosting clients.
Code Poet Directory
Automattic, the company behind WordPress, maintains the Code Poet Directory. The companies and individuals in the directory can be filtered by region, specialty, platform and price-ranges. Those listed are considered to be enterprise-level WordPress professionals, web designers and developers.
I have never found a WordPress social sharing plugin that I loved. I just wanted a simple social plugin that would load any external scripts asynchronously, allowed me to share my posts on Twitter, Google+, Linkedin and Hacker News and never included the words “Sharing is sexy!“.
A few weeks ago I started working on developing my own social sharing plugin, and today it is available to the public via Github.
The Async Social Sharing plugin loads the third-party social scripts asynchronously to improve site performance.
The plugin allows you to display the following sharing widgets:
Twitter
Facebook
Google+
Linkedin
Hacker News
An options panel is provided to allow unwanted social widgets to be disabled:
Why is Asynchronous script loading better?
Asynchronous loading allows multiple files to load parallel to each other. Instead of having to wait for Twitter to respond with their script, the browser moves on and starts fetching the next request.
On January 31st, Twitter released version 2.0 of their popular Bootstrap framework complete with a responsive stylesheet and new components. I have been working to keep BootstrapWP, the WordPress theme for Bootstrap as up to date as possible.
If you have been using any previous versions of the BootstrapWP for theme development, I encourage you to switch to the development branch on Github. The development branch contains many bug fixes along with overall style and device response improvements.
Usage: Customize and override any of the styles using style.css file. All .css and .js files are loaded in functions.php. Don’t forget to disable any of the .js files you do not need
Good feedback relates back to goals and user needs. Bad feedback is subjective and prescriptive.
For example “There’s way too much going on here and the “Add to Cart” button gets lost.” That’s excellent feedback. Relates to the goal of the page, which is to apparently sell something, and communicates a problem to be solved, which is to get rid of all the junk on the page.
Avoid personal preferences: “I hate green.” There is absolutely nothing I can do with that statement other than feel sorry for you because there are some very nice green things in the world. Like money—which you’re now wasting by giving me bad feedback.
Prescriptive feedback comes along the lines of “Move the buttons over here.” And, of course, everyone’s favorite: “Make the logo bigger!” These may, in fact, be excellent ideas, but if we talked about the problems you’re trying to solve with these prescriptive solutions we might come up with better solutions or possibly uncover a bigger problem in the overall design system.
When building the new WordPress theme for this site, I wanted it to be responsive to the various device sizes and resolutions visitors were using to read my posts. Testing a website in the latest release of the major desktop browsers is hard enough, testing the different screen sizes and resolutions for mobile phones and tablets was utterly painful.
I have tried many different online services for responsive testing, but Screenfly is my favorite because:
Moving back and forth among the different devices is simple and fast
The website displayed is clickable; testing hover states and user interactions can also be done
Even the small 320×240 Blackberry screen is available as a testing option
It is free (although I would gladly pay for the service)
ImageOptim is an open-source (free) Mac application for optimizing images for the web. The application is fast and easy to use with a drag and drop interface.
ImageOptim has built-in support for the following optimization tools: AdvPNG, OptiPNG, Pngcrush, JpegOptim, jpegtran and Gifsicle. Support for PNGOUT can be easily added manually.
Whenever a client makes a specific request for something you know is a bad idea, try turning it around and asking them what it is that’s bothering them. Exactly what are they trying to solve? This allows you to first try and get to the root of the problem so that you can come up with a more appropriate way to solve it; rather than just implementing the bad idea.
…it helps a lot to open a new editor window and try to write code that just works. Without being elegant, fast or maintainable. Just something that works properly. And after you manage to put your thoughts into (bad) code, it’s easy to refine it from there and end up with good code.
Just don’t stop at the bad code, like many beginners do. It’s like when designers sketch a rough draft for a logo, before drawing the digital version. Could you imagine how horrible it would be if they wanted to stop there and give the rough sketches to the client instead?