Diza 1.3.18 – Pharmacy Store Elementor WooCommerce Theme

Diza-download

WordPress Plugin

Version: Product Version: 1.3.18


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 Diza Theme on a boring local WooCommerce stack: PHP 8.2, WordPress 6.x, Elementor, Elementor Pro, WooCommerce, WP Rocket, and a pile of sample products. Diza installed fine, no drama there. The demo import worked through the theme’s importer, but I still made a database snapshot first because I’ve been burned by “one-click demo” buttons more times than I care to admit.

The pharmacy demo looks decent out of the box. Clean cards, usable product grids, nice category blocks, and the header actually makes sense for a store with search-heavy traffic. But then I opened DevTools and saw the usual theme-shop crime scene: too many CSS files, multiple font weights, and Elementor widgets dragging half the circus onto pages that only need a product loop.

What I Could Change Without Swearing

Most visual stuff in Diza is thankfully editable from Appearance -> Customize and the theme panel. Header layout, logo, colors, some typography, product archive behavior — all manageable without touching code. Elementor handles the homepage sections, banners, icon boxes, and category promos.

The useful bits are in the builder: homepage hero, pharmacy category blocks, “featured products”, and promotional strips. I swapped the demo blue/green palette from the Customizer and adjusted product card spacing in Elementor. No need to fight CSS for basic layout tweaks, which is honestly a lifesaver when the client is already asking why the “vitamin banner feels sad”.

WooCommerce settings are normal: product catalog in Appearance -> Customize -> WooCommerce, checkout fields via hooks or a plugin, and product image sizes through WooCommerce -> Settings -> Products. Nothing magical, but nothing broken either.

What Is Hardcoded Because Of Course It Is

The annoying parts start when you want to change structural markup. Some header and product template pieces are not “real Elementor freedom”; they’re theme templates dressed up as flexibility.

I had to look into files like:

  • header.php
  • footer.php
  • woocommerce/content-product.php
  • woocommerce/single-product/product-image.php
  • inc/classes/class-theme-setup.php
  • inc/vendors/woocommerce/functions.php

On my setup, changing the product badge logic properly meant overriding WooCommerce templates in a child theme, not hacking the parent like an animal. I hooked into woocommerce_before_shop_loop_item_title and removed the theme’s badge output, then added my own stock/discount label. Cleaner, less future pain.

Also, some strings were not where I expected. A few labels were buried in theme functions instead of template files. I used grep -R "Quick View" wp-content/themes/diza/ because clicking around the admin like a confused raccoon was getting me nowhere.

Performance: Not Awful, Not Innocent

Diza is not the heaviest WooCommerce theme I’ve touched, but it still has that Elementor + shop theme bloat. In Chrome DevTools, the Network tab showed several font weights loading even after I picked only two in the typography panel. I killed the extras by disabling Google Fonts in Elementor and serving local fonts from the child theme.

In functions.php, I dequeued a couple of unused styles on non-shop pages:

add_action('wp_enqueue_scripts', function () {
    if (!is_woocommerce() && !is_cart() && !is_checkout()) {
        wp_dequeue_style('diza-woocommerce');
        wp_dequeue_script('diza-quick-view');
    }
}, 99);

Do not blindly copy that without checking handles on your install. I confirmed mine from Query Monitor and the page source. Theme handles can change between builds, because apparently stability is a luxury.

The JS Bug That Made Me Mutter Into My Coffee

Here’s the predictable WooCommerce headache: if you enable aggressive JS delay in WP Rocket or LiteSpeed Cache, product variations can break. On one test product, the dropdown changed but price and stock text didn’t update.

Console was clean, which made it more annoying. The fix was excluding these from delay/minify:

  • jquery-core
  • jquery-migrate
  • wc-add-to-cart-variation.js
  • wc-single-product
  • diza-woocommerce

In WP Rocket, I added them under File Optimization -> Delay JavaScript execution -> Excluded JavaScript Files. After that, variations behaved again. I absolutely hate that this is still a thing in 2026, but here we are.

GPL, Activation, Demo Import, Updates

I tested a GPL-licensed copy of Diza on multiple local/staging installs. The theme itself worked without domain limits, so yes, practical Unlimited Website Usage for the WordPress theme code. No weird lock screen, no “enter key or die” nonsense for basic usage.

That said, don’t confuse GPL usage with vendor services. Marketplace auto-updates, support, and some bundled plugin updates may still require a valid purchase/license. That’s normal.

Demo import worked from the included importer. If it fails, I’d skip the drama and manually import XML from Tools -> Import -> WordPress, then assign menus in Appearance -> Menus and set the homepage in Settings -> Reading. Manual updates are the usual: upload the new theme ZIP or replace the parent theme over SFTP, while keeping all edits in a child theme. Never patch parent files unless you enjoy losing weekends.

Database Mess I Noticed

Like most Elementor-heavy themes, Diza leaves plenty of layout data in wp_postmeta, especially _elementor_data, _elementor_css, and _elementor_page_settings. After importing demos, I cleaned unused pages, trashed demo products, then ran a search for orphaned Elementor templates.

If the site feels sluggish in admin after import, check wp_options for bloated transients and autoloaded junk. I used WP-CLI:

wp option list --autoload=on --format=table
wp transient delete --all

Not glamorous, but it beats blaming hosting for everything.

FAQ

Why does the mobile menu sometimes freeze after optimization?

Because delayed jQuery breaks the theme menu script. Exclude jquery-core and the main Diza navigation JS from delay.

Can I rebuild the header fully in Elementor?

Partly. Basic layout yes, deep markup no. For serious header surgery, use a child theme and edit/override header.php.

Does Diza work for non-pharmacy stores?

Yes. The pharmacy skin is just styling and demo content. WooCommerce logic is generic enough for cosmetics, supplements, or medical equipment.

Why is the shop page DOM so heavy?

Elementor widgets plus theme wrappers plus WooCommerce loops. Reduce product card extras, disable quick view if unused, and avoid stacking three carousel widgets above the fold.

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
Zota 1.3.17 – Elementor Multi-Purpose WooCommerce Theme
Hara 1.2.20 – Beauty and Cosmetics Shop WooCommerce Theme

Reviews

There are no reviews yet.

Be the first to review “Diza 1.3.18 – Pharmacy Store Elementor WooCommerce Theme”

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