Disable auto resize on upload

So, in the newer versions of WordPress they have added a new functionality where they automatically downsize images that are considered “too” large. Which is essentially 2560px width or height. Now, I personally agree with the width, no image needs … Read more…

Making custom tabs in Divi

So this setup is a bit more complicated and fairly specific.If you are interested in how this works, feel free to ask me about it.I mainly created this post for myself to easily find the code again 😉 Code to … Read more…

Converting sections to popups in Divi

Add the following code to: Divi -> Theme Options -> Integration -> Add code to the < body > <script> jQuery(function($){ var popups =[“popup1″,”popup2”]; //use: …_button, …_popup, …_close var transition_duration = 0.3; //set in seconds for (var i = 0; … Read more…

Removing tooltip/titles on Divi images

From your Dashboard go to Divi -> Theme Options -> IntegrationAnd add the following code to the <head> <script> jQuery(document).ready(function($){ $("img") .mouseenter(function() { var title = $(this).attr("title"); $(this).attr("temp_title", title); $(this).attr("title",""); }) .mouseleave(function() { var title = $(this).attr("temp_title"); $(this).attr("title", title); $(this).removeAttr("temp_title"); … Read more…

Optimizing videos for web

There are a couple of things to consider when adding video to your website.Generally you want to embed them using other services (like YouTube, Vimeo, etc).Sometimes however that is not an option, because you might want to use it as … Read more…