I blog about web development, WordPress / WooCommerce tips...
and other stuff.
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...
A quick way to manually disable the WordPress emojicons code without needing a plugin. Pop this in your functions.php file:...
This snippet of PHP can come in handy for removing the empty spaces in a string. Here is it being...