Customise WooCommerce out of stock message
Sometimes the WooCommerce out of stock message isn't quite appropriate. Here's a couple of ways to change that message.
Sometimes the WooCommerce out of stock message isn't quite appropriate. Here's a couple of ways to change that message.
Ever needed to search for a post by something other than the title or post content? If you've built a website with custom post types that have additional fields, it's a good chance that admins will need to search on your custom meta.
Gravity Forms normally loads its stylesheets in the page head, where they belong. It does that only on pages which have forms, which is nice. If you use a widget to host your form, however, it can't detect that until it renders the widget... too late to load the stylesheets in the head. At that point, it just pulls them directly into the page body.
Events Manager is a really nice, easy to customise plugin for showing events on WordPress websites. One gripe I always have with it is that the location maps zoom when you use the mouse scroll wheel, something I always turn off when I add a map to a page. Here's how to fix it.
Customising the AJAX output of WordPress plugins can often be a breeze, when the authors oblige other developers by peppering their code with action and filter hooks. But if they don't, you can always fall back on hacking the plugin's AJAX action.
I've moved nearly all of WebAware's websites to DigitalOcean, and stuck NginX in front of everything.
WordPress 4.1 brings with it the twentyfifteen theme, which I find to be a rather nice blog theme. Unfortunately, it adds a new wrinkle to any tables on your website -- often breaking them! Here's the simple fix.
When shoppers search a WordPress website, you want them to find products first before listing any articles and pages. And it's surprisingly easy to achieve, with a simple filter hook.
Keeping your WordPress website fast can become pretty tricky once you start installing plugins and off-the-shelf themes. Everything seems to want to load at least one CSS stylesheet, and sometimes a dozen or more JavaScript script files. Some also inject great chunks of CSS and JavaScript into every page. Luckily, there's the handy Autoptimize plugin to help you sort all of that out.
Gravity Forms has some nice compound fields to make it easy to accept things like names, addresses, and credit card details. One annoying thing it does, though, is put the labels for the input fields below them instead of above them. Here's how to move Gravity Forms field labels above input fields where most people would expect them to be.
For a while now, I've been using the amazing Trello to help me keep track of various tasks. Sure, I use various bug trackers like Mantis and GitHub Issues too, but for some of the more high-level tasks it's just easier with Trello. One job it's particularly good at is helping me keep track of plugin compatibility testing.
Gravity Forms is a very easy to use yet flexible tool for building forms in WordPress. It uses quite a bit of JavaScript and custom CSS, so it's careful to only load its scripts and stylesheets when needed. But if you put a form into a custom field, e.g via Advanced Custom Fields, how will Gravity Forms know it needs to load them?