by Steve | Nov 10, 2025 | Web Development
Why is Divi giving an error “your save has failed” and opening a preview of the page in a new tab? The reason may be that you have a Wordfence installed, and your page has a Code module, which may be causing Wordfence to clamp down on your page editing...
by Steve | Oct 7, 2025 | Web Development
While setting up a Gatsby project, you may receive the following error after running `gatsby develop`: RangeError [ERR_BUFFER_OUT_OF_BOUNDS]: “length” is outside of buffer bounds The solution can be running the following 2 commands in your terminal rm -rf... by Steve | Jun 26, 2021 | Web Development
Following some tutorials will produce a 500 internal server error. This post only uses CSS to remove the sidebar from bbPress when using the Divi theme. Simply add the following CSS to your Divi > Theme Options > Custom CSS: .bbpress #sidebar {display: none;}... by Steve | May 26, 2021 | Web Development
Add the following to the top of your .htaccess file in the root public folder of your website: <IfModule mod_deflate.c> # Compress HTML, CSS, JavaScript, Text, XML and fonts AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE... by Steve | May 23, 2021 | Web Development
If you try and add the Google Tag Manager script code directly into your header.tpl or head.tpl files, unfortunately, your front end styles will break. To overcome this, wrap your GTM code in a literal: {literal} <!– script code here –> {/literal}... by Steve | Dec 5, 2020 | Web Development
To improve the security of your website extra headers can be added to your website using .htaccess. If you’re using Divi in your WordPress website, add the following to your .htaccess file (at the top). # Server Security <IfModule mod_headers.c> Header set...