Ultimate Addons 1.45.3 – for Elementor Pro

Ultimate Addons for Elementor Pro download

WordPress Plugin

Version: Product Version: 1.45.3


GNU GPL


Unlimited websites

$5.99

Save

One-time purchase

Archive checked
VirusTotal report
VirusTotal
0/66 threats detected

View report





Need more products?
Lifetime Membership $92


View Membership

  • Instant account download
  • Security checked
  • 14-day refund policy applies


Secure checkout · Instant access



Trustpilot





4.8

I tested Ultimate Addons for Elementor Pro on a real client build, not some empty sandbox with one hero section and fake smiles. WordPress 6.x, Elementor Pro, WooCommerce, WP Rocket, Astra child theme, and the usual pile of “can you just add this small thing” requests.

The good part: Ultimate Addons for Elementor Pro is genuinely useful. The bad part: it can absolutely turn your DOM into lasagna if you let editors drag every shiny widget onto one page. I like the plugin, but I don’t trust it unsupervised. Same as most page-builder addons, honestly.

What I actually liked

The widgets are not toy widgets. Modal Popup, Advanced Heading, Info Box, Posts, Hotspots, Off-Canvas, Woo widgets — they save time. The Cross-Site Copy Paste thing also saved my sanity when moving sections between staging installs.

I had one pricing page where the designer wanted a stupid animated comparison layout with tabs, badges, icons, tooltip junk, and mobile stacking. Normally I’d write half of that in a custom Elementor widget. With Ultimate Addons for Elementor Pro, I built it in the builder, then cleaned the CSS afterward like a grown adult.

The settings I touched first were in:

WP Admin -> Ultimate Addons -> Widgets

I disabled everything we weren’t using. Not “for performance vibes”, but because I opened DevTools -> Network and saw extra UAEL assets being considered on pages where nobody asked for them. Less enabled junk, fewer surprises.

The performance bit nobody wants to hear

On one homepage, DevTools showed uael-frontend.min.css and uael-frontend.min.js loading alongside Elementor’s own circus. The plugin is not uniquely guilty here, but Ultimate Addons for Elementor Pro makes it very easy to build 14 nested wrappers for a three-word headline. Elementor already loves div soup; addon packs bring extra croutons.

My rule: if a section uses only layout, text, and buttons, I don’t use UAEL widgets. I use native Elementor or plain HTML. If I need Modal Popup, Business Hours, Posts skin, or Woo styling fast, then fine, Ultimate Addons for Elementor Pro earns its rent.

I also checked the Elements panel. Some widgets output nested .uael-* wrappers inside .elementor-widget-container. Not evil, just annoying when Lighthouse screams about DOM size and the client sends screenshots like it’s a hostage note.

The cache plugin fight

WP Rocket broke one UAEL modal on mobile after “Delay JavaScript execution” was enabled. Classic. Console showed the click event firing before the UAEL frontend script was awake. What were they thinking? Well, not UAEL specifically — this is what happens when every plugin wants to be async royalty.

My fix was not magical. In WP Rocket:

Settings -> WP Rocket -> File Optimization -> Delay JavaScript execution -> Excluded JavaScript Files

I excluded:

/wp-content/plugins/ultimate-elementor/assets/min-js/uael-frontend.min.js
jquery.min.js
jquery-migrate.min.js

Ugly? Yes. Effective? Also yes. After that, the popup trigger stopped acting like it had unpaid emotional debt.

Builder settings vs real code

Stuff you can safely change in Elementor:

  • widget spacing, typography, colors
  • responsive visibility
  • modal width, overlay, animations
  • posts query settings
  • Woo layout styling

Stuff I refused to do in the builder:

  • complex conditional logic
  • custom post filtering beyond basic query controls
  • reusable markup that needed version control
  • anything involving checkout behavior

For that, I used the child theme. My quick hacks went into:

wp-content/themes/astra-child/functions.php

Example: I had a UAEL Posts widget pulling a custom post type but the client wanted to exclude posts with a private meta flag. Elementor UI was useless there, so I hooked the query:

add_action('elementor/query/hide_private_cards', function($query) {
    $meta_query = $query->get('meta_query') ?: [];
    $meta_query[] = [
        'key'     => '_hide_from_cards',
        'compare' => 'NOT EXISTS',
    ];
    $query->set('meta_query', $meta_query);
});

Then in the widget:

Query -> Query ID -> hide_private_cards

That’s the kind of boring fix that survives client edits.

Files and database mess I checked

The main plugin file sits here:

wp-content/plugins/ultimate-elementor/ultimate-elementor.php

Most widget/module logic is under:

wp-content/plugins/ultimate-elementor/modules/

Frontend assets are under:

wp-content/plugins/ultimate-elementor/assets/

Elementor stores the actual page layout in:

wp_postmeta -> _elementor_data

And generated CSS often lands around:

wp_postmeta -> _elementor_css

So when a UAEL widget looked “stuck” after edits, I didn’t pray. I went to:

Elementor -> Tools -> Regenerate CSS & Data

Then cleared WP Rocket cache and Cloudflare. In that order. Otherwise you chase ghosts for 40 minutes and start blaming PHP for CSS cache, which is how weekends die.

GPL and updates

I personally tested the package I had, and Ultimate Addons for Elementor Pro worked normally with Unlimited Website Usage. Frontend widgets were not crippled, and the plugin didn’t randomly lock sections.

Plain version: the plugin can run without drama, but official license activation is what usually handles vendor dashboard stuff like automatic updates and cloud/template access. If your copy is GPL and not tied to a Brainstorm Force account, don’t expect official one-click updates or account-based template imports to behave like a licensed install.

Manual update is the usual boring route:

Plugins -> Add New -> Upload Plugin

Upload the newer ZIP, replace the old version, then clear caches and regenerate Elementor CSS. I also take a DB backup first because I’ve been alive long enough.

FAQ

Why did my UAEL modal stop opening after optimization?

Check delayed JS. Exclude uael-frontend.min.js and don’t delay jQuery. Then test in DevTools Console, not by refreshing like a caveman.

Can I use Ultimate Addons for Elementor Pro on WooCommerce pages?

Yes, but don’t stack UAEL Woo widgets with random AJAX filter plugins blindly. I’ve seen broken variation forms when optimization plugins delayed wc-add-to-cart-variation.js.

Why is the mobile layout suddenly huge?

Usually nested Elementor columns plus UAEL padding. Inspect .uael-* wrappers in DevTools and check Elementor responsive controls per breakpoint.

Is it safe to disable unused widgets?

Yes. Go to Ultimate Addons -> Widgets and shut off what you don’t use. Fewer assets, fewer client disasters.

VirusTotal archive check

All products we provide come only from official sources and verified developers. To confirm their integrity and safety, the archive has been scanned for viruses and malware. You can review the scan results at any time by clicking the button below.

View in VirusTotal
Essential Addons 7.0.2 – for Elementor Pro
Ultimate Addons for Contact Form 7 Pro 1.8.21

Reviews

There are no reviews yet.

Be the first to review “Ultimate Addons 1.45.3 – for Elementor Pro”

Before you send us a support request, take a quick look at our Terms Of Use and FAQs. We know nobody loves reading them, but very often the answer is already there and saves you some time.

What to do first

  1. If that doesn’t help, check the product documentation next.
    A lot of small issues come from missed settings or simple setup steps, and the docs usually clear that up pretty fast.
  2. Still not working?
    No problem — just open a support ticket and tell us what’s going on. We’ll take it from there.
  3. When to expect a reply
    We usually get back to you within 1–2 business days. Sometimes faster, depending on the issue.

How to explain the problem (this really helps)

  • Be specific
    Instead of saying “it doesn’t work,” tell us what exactly is going wrong. Which button? Which feature? What were you trying to do when it happened?
  • Add screenshots
    Screenshots make a huge difference. Seriously. A simple image (or link to one) helps us understand the issue right away and saves a lot of back‑and‑forth.

Following these steps helps us help you faster — and with fewer questions along the way. Thanks for making support easier for everyone.

Answers to common questions!

You can use any product from our store on as many websites as you like.

Single purchase includes download access for 72 hours. Future version downloads require repurchase or an active membership.

Manual updates are available to customers with active access.

Yes, we do. In most cases, you can expect a reply within 24–72 business hours. For simpler issues, we’re often able to respond much sooner.

You can contact us via live chat or open a support ticket directly from the product page — whichever is more convenient for you.

No, there are no limits. We don’t believe in restricting downloads. If you need to download a product multiple times, that’s absolutely fine.

We use professional, high‑performance storage systems to ensure downloads are fast, stable, and hassle‑free.

No, license keys are not included or required. Because all items are distributed under the GNU General Public License (GPL), a license key is not necessary to access the software’s functionality.

All products you receive are fully authentic. The files are provided fully functional and optimized for immediate installation, allowing you to use them seamlessly right out of the box without any restrictions.

Yes — 100%. All products contain the original code and are legally redistributed under the GNU GPL v2/v3 license.

The main difference compared to purchasing directly from the original author is that we don’t offer premium author services, such as custom development or one‑on‑one technical support. Additionally, since the software is fully GPL-compliant, it is provided ready for use and can be freely installed on an unlimited number of websites.

Yes, we stand behind our products. If you encounter an issue that cannot be resolved or a technical problem without a workable solution, we’ll do our best to help — and if necessary, issue a full refund.

Please note that refunds are not available if the product works as described but simply does not meet personal expectations. We’ve also encountered cases where refund requests were made while the product was still in use, which we cannot allow.

Our approach is simple: fairness and transparency. If you ever have a concern, just reach out — we’re always open to finding a reasonable solution that works for both sides.

super offers of the month