Divi Booster Plugin

Get Divi Booster

The original and best Divi plugin

  • Adds hundreds of new options to Divi
  • Save time and avoid coding
  • Get your site looking the way you want

Automatic updates. No recurring fees.
90 day refund guarantee.

Check out Divi Booster's Features »

All Divi Plugins by Divi Booster

In addition to the ever popular Divi Booster, we develop a wide range of plugins designed to help you get the most out of Divi.

Most Popular Divi Plugins

"I use multiple plugins by this developer, and would highly recommend them all." – Karrie

Divi Booster plugin by Divi Booster

Adds hundreds of new options to Divi

Divi LearnDash Kit

Better Divi and LearnDash Integration

Divi Show / Hide Button

Show and hide content with a click

Divi Easter Plugin

Decorate your site this Easter with our cracking Easter-themed Divi plugin.

Divi Easter Icons

Add Easter and Spring icons to Divi

Divi Booster

Divi Booster adds all the features you need to build awesome sites in Divi.  

Divi Booster

Adds hundreds of new options to Divi

Divi Gallery Booster

Divi Booster's gallery module options only

Divi Modules

Improve your pages and layouts with these custom Divi modules 

Divi PHP Code Module

The easy way to add PHP code to Divi

Divi Show / Hide Button

Show and hide content with a click

Divi Password Box Module

Better-looking password protected pages

Divi Code Snippet Module

Syntax-highlighted code snippet module

Divi Breadcrumbs Module

Automatic SEO-ready breadcrumbs module

Divi Search Results Module

Dynamic Search Results

Divi Recipe Module

Display your recipes, beautifully

Divi Advent Calendar Module

Boost holiday season goodwill and sales

Divi QR Code Module

Easily add QR Codes to your pages

Divi Extensions

These powerful tools add special-purpose capabilities to your Divi site

Divi Copy & Paste Plugin

Streamline your Divi workflow

Divi Dynamic Content Extended

Enhancements to Divi's Dynamic Content feature

Divi Shortcode Enabler

Runs shortcodes where Divi doesn't

Divi Transitions Plugin

Page transition effects for Divi

Divi Compatibility Kits

Our "kits" make plugins you already use work better with Divi

Divi LearnDash Kit

Better Divi and LearnDash Integration

Divi ARMember Kit

Better Divi and ARMember Integration

WordPress Plugins

Our WordPress plugins can be used to enhance any WordPress theme

Divi Christmas Fonts

AI generation of targeted call-to-actions

Divi Bundles

Save 40-60% with our hand-picked Divi Plugin Bundles

Divi Agency Bundle

Save 60% with our best plugins for agencies

Divi Designer Bundle

Save 50% with our best plugins for designers

Divi Blogger Bundle

Save 40% with our best plugins for authors

Latest Divi Theme Tips

Changing the Divi Submenu Link Hover Color

On the Divi theme, when you open a drop-down menu and hover over a particular menu item, the item's background color is changed to highlight the item. If you want to change this color, or get rid of the hover effect (by setting its color to the same as the actual...

Change Divi Image Portfolio Grid Thumbnail Sizes

The Divi Theme’s portfolio module gives you the option of displaying your projects as a series of thumbnails (grid view). To adjust the size and spacing of the images in your thumbnail grid, you can use the following CSS:Related Post: Adding CSS to the Divi Theme It...

Change the Height of the Divi Header

To change the height of the Divi Theme header, you can do so by adding CSS to Divi, like so:A couple of notes: This sets the minimum height rather than the absolute height to allow the header to grow if you add more content too it. The first min-height sets the...

Changing the Background Color in Divi

To change the background color in the Divi Theme, you can do so by adding CSS to Divi, like so: #main-content { background-color: green !important; } This will set the background on the main content, but leave the header and footer untouched.

Changing the Default Divi Font Size

If you'd like to change the default font size in the Divi Theme, you can do so by adding CSS to Divi, like so: body { font-size:130% !important; } This will change the font-size of many components, such as there text in fonts, in the footer and in the sidebar. Note...

Adding PHP code to the Divi Theme

Some of my fixes for the Divi theme require PHP code to be added to make the required change to the theme. This post briefly covers the various options and their various advantages.To add PHP code to the Divi Theme, you can: Use Divi PHP Code Module - to add PHP...

Hide the Divi Header Navigation Links

If you'd like to hide the navigation links (including the search icon) in the Divi Theme's standard header, here are several options.Hide the Divi Header Menu within Divi Settings It's possible to remove the menu links and search icon within Divi itself. To do so: 1....

Stop the Divi Header from Shrinking on Scroll

The Divi Theme header has a default scroll effect which sees it "shrink" to a more compact version as you scroll down the page. If you'd like to keep the header at full-size as you scroll down the page, you can do so using either of the two methods below.Stopping the...

Open Divi Slider Button Link in New Tab

To make Divi Theme's slider button links open in a new tab, you can add the following into the footer.php file (of the theme itself, or a child theme): <script> jQuery(function($){ $('.et_pb_more_button').attr('target', '_blank'); }); </script> This is...