I blog about web development, WordPress / WooCommerce tips...
and other stuff.
If you have recently bought a 4k monitor, you may have noticed your Adobe software shrinking to an annoyingly small...
A quick snipped of code that can be used attach a function to the escape key. Great for adding or...
In the early days (2003), WordPress was essentially a blogging tool and quite limited in how you could build with...
For me, the ACF plugin is a standard install for every WordPress project. Its a great tool for developers to...
Fed up of getting the W3 Validator warning "The type attribute is unnecessary..."? Here is a handy bit of code to...
A nice solution for a custom WordPress Ajax login form without using a plugin. Place this anywhere you would like...
Need a bespoke WooCommerce site with dynamic content for two types of visitor? For example, this is from a recent...
A quick way to remove empty p tags from custom shortcodes in Wordpress. <?php add_filter("the_content", "the_content_filter"); function the_content_filter($content) { $block...
I came across this when looking for a purpose built, fully customisable calendar - https://fullcalendar.io/ Im just starting to work with...
A quick way to manually disable the WordPress emojicons code without needing a plugin. Pop this in your functions.php file:...
Simple bit of jQuery to add an active class to the current navigation item based on the page url. jQuery("nav...
Here is a really simple way to create custom tabs for your WooCommerce builds using the ACF Repeater Field. First,...