WhatsApp Chat
Send us a message today and we will contact you as soon as possible.

Quick performance boost

If you have access to your Apache / NGINX config files, then these directives will significantly boost your site speed. Pretty standard GZip and Browser Expiry but it’s easier than using htaccess I think # Enable Gzip compression gzip on; # Compression level (1-9) gzip_comp_level 5; # Don’t compress anything under 256 bytes gzip_min_length 256; […]

Mask email address

Sometimes clients just won’t accept the advice to use a contact form, and instead insist on having their email address on the site. This, of course, is just an open invitation to spambots scraping the address straight off the site. A simple solution is to use javascript to mask the address thus fooling the cheeky […]

Using Google API to get feed from Blogger

I had previously used the php library SimplePie to pull in blog posts from a clients Blogger blog to show on the their Zencart site. And it worked well – until the hosts did a PHP upgrade and it stopped working (thanks 1&1!) No matter what I tried – different versions of SimplePie, debugging lines […]