
WordPress Plugin

WordPress Plugin
GNU GPL
Unlimited websites
$5.99
Save —
One-time purchase
Secure checkout · Instant access
★★★★★
4.8
I’ve used Soledad on a couple of content-heavy WordPress builds, and yeah, I get why people buy it. It’s stupidly flexible. Magazine layout, food blog, WooCommerce shop, “personal brand” nonsense — Soledad can fake all of it in one afternoon.
But the price of that flexibility is clutter. A lot of clutter. My first install felt like opening wp_options and finding someone had stored their entire apartment in there. The theme writes a ton of settings into theme_mods_soledad and several penci_* option rows. Not fatal, but if you care about autoload bloat, you’ll be visiting phpMyAdmin sooner than planned.
The good part: Soledad is genuinely comfortable for non-dev editing. Most visual stuff is inside Appearance -> Customize and Soledad -> Theme Options. Typography, header layouts, archive grids, single post meta, social buttons, breadcrumbs — all there.
I didn’t have to touch PHP for normal blog layouts. Changing post card style, sidebar behavior, featured image ratios, dark mode colors — that’s all Customizer territory. For clients who constantly say “can we make this slightly more elegant?”, Soledad saves your sanity.
The demo importer also works better than many bloated ThemeForest monsters. You go to Soledad -> Demo Import, pick a demo, import content/widgets/customizer settings, and wait. Don’t do it on cheap shared hosting unless you enjoy 504 errors. I usually bump max_execution_time to 300 and memory_limit to 512M before touching imports.
Out of the box, Soledad is not lightweight. I opened Chrome DevTools -> Network and saw multiple font weights loading, Font Awesome, slider scripts, lazyload scripts, Woo assets on pages that weren’t selling anything, and a DOM tree that looked like it had been raised by wolves.
The first thing I killed was unused typography. In Theme Panel -> Typography, the client had selected three Google font families with 400/500/600/700/italic. Beautiful? Sure. Sensible? Absolutely not. I narrowed it to 400 and 700, then self-hosted fonts using a child theme and wp_enqueue_style() in functions.php.
For CSS/JS cleanup, I had decent results with Perfmatters Script Manager. On posts, I disabled WooCommerce scripts unless is_woocommerce() or is_cart() returned true. Soledad still wanted to drag some layout scripts everywhere, so I dequeued a few in my child theme:
add_action('wp_enqueue_scripts', function () {
if (!is_singular('post')) {
wp_dequeue_style('penci-review');
}
}, 99);
Not glamorous. It worked.
Here’s the dumb one. When I enabled JS delay in WP Rocket, product variations stopped changing prices. Console showed no dramatic red explosion, just silent sadness. The culprit was delayed jQuery plus Woo variation logic.
My fix: exclude these from delay/minify:
jquery-corejquery-migratewc-add-to-cart-variationwc-single-productpenci-mainAfter that, variable products behaved again. Soledad has decent WooCommerce styling, but if you stack caching, minification, and delayed JS without testing checkout, you deserve the refund email you’re going to get.
This is where Soledad gets less cute. Headers and layouts are mostly configurable, yes. But if you want cleaner markup, custom schema, or different post meta order beyond what the panel allows, you’re digging.
I had to edit through a child theme and override bits from:
header.phpsingle.phpcontent-single.phpinc/template-tags.phpwoocommerce/content-product.phpDo not edit the parent theme unless you enjoy losing work during updates. I also used hooks like wp_enqueue_scripts, body_class, and template_redirect for small behavior changes.
One specific annoyance: mobile menu markup was heavier than necessary. I couldn’t fully fix it in Customizer. I copied the relevant header template into the child theme and stripped extra social/search blocks the client didn’t use. Dirty? Yes. Faster? Also yes.
I tested Soledad as a GPL package on my own setup. The theme itself worked normally and didn’t lock the frontend. Unlimited Website Usage was fine in practice — install it on multiple local/staging/live sites, no weird domain cap.
But don’t confuse that with official support. If you want automatic ThemeForest updates and vendor support, you need the official purchase/license. With GPL files, I handled updates manually: download the newer package, compare with the child theme overrides, upload via SFTP, clear cache, then pray mildly.
Demo import did not require me to hack anything. If a bundled plugin asked for activation, I ignored upsells unless the feature was actually needed. Never patch core theme files just to bypass nags. That’s how you inherit a malware-shaped headache.
Mostly. Exclude jquery-core, wc-add-to-cart-variation, and penci-main from JS delay if WooCommerce or menus act weird.
Usually delayed JS. Check DevTools -> Console, then stop delaying the main theme script and jQuery.
Somewhat. Disable unused header blocks in Customizer, remove extra post meta, and override header templates in a child theme.
Mostly wp_options, especially theme_mods_soledad and assorted penci_* rows. Export before experimenting.
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 VirusTotalYou 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.

Reviews
There are no reviews yet.