Yuupee Smart Quote Drafting for WooCommerce
Draft a branded, calculated quote from a plain-language request — checked against your real catalog, computed by the plugin, never by the AI.
Solid choice
Yuupee Smart Quote Drafting for… is a solid plugin choice in 2026, with a few things worth checking first. Was last updated 4 weeks ago, and scores 64/100 on our health check.
- Actively developed — last update 4 weeks ago
- Tested with the latest WordPress (7.1)
- Small user base (<10 active installs)
- Very few reviews so far
- Needs PHP 8.1 or newer
How does it stack up?
Side-by-side on installs, updates, ratings & supportDaily downloads
Download spikes usually follow a new release — each site that auto-updates counts as a download.
Rankings
Where Yuupee Smart Quote Drafting… stands todayWordPress.org search rankings
Live position in the plugin search, top 100| Keyword | Position |
|---|---|
| AI | >100 |
| b2b | >100 |
| quote | >100 |
| request a quote | >100 |
| woocommerce | >100 |
About Yuupee Smart Quote Drafting for WooComm…
From the official readme · v0.4.5Description
Every existing “Request a Quote” plugin is a manual form: the customer fills
fields, a rep drafts the quote back by hand. AI Quotes turns a plain-language
request into a structured line-item list automatically — then hands it to
you to review before anything is final.
The AI only ever drafts loosely worded line items (what, and how many). This
plugin resolves each one against your real product catalog and computes
every subtotal, tax amount, and total in PHP. The model never sees or sets a
price.
Features
- Plain-language request -> AI-drafted line items, matched against your real catalog.
- Fully editable line-item table before anything is finalized — add, remove, or search for a different product.
- Calculation done in PHP from real WooCommerce tax data, never by the AI.
- Branded PDF output — your company name, address, logo, and payment details, configured once in settings.
- Finalized quotes lock in their numbers, so they don’t change if a product’s price changes later.
- Drafts using whichever AI provider you’ve already connected under Settings → Connectors (WordPress’s built-in AI Client) — no separate API key to manage in this plugin.
External services
This plugin turns a rep’s plain-language request into a draft list of line
items (description + quantity only — no prices, no product IDs, no customer
data) by calling WordPress’s built-in AI Client, which forwards the request
text to whichever AI provider the site owner has connected under Settings →
Connectors. Nothing is sent unless a store rep actively triggers a draft.
This plugin does not choose or hardcode a provider, and ships no API keys —
credentials are entered and managed by WordPress core, not this plugin. The
built-in connectors available in WordPress 7.0 are:
- OpenAI —
Terms of use —
Privacy policy - Anthropic —
Commercial Terms of Service —
Privacy policy - Google —
Terms of service —
Privacy policy
Only whichever provider the site owner has connected is ever called.
Installation
- Requires WooCommerce active, and WordPress 7.0+ with an AI provider connected under Settings → Connectors (Anthropic, Google, or OpenAI ship built into WordPress 7.0).
- If installing from a release zip, the PDF library is already bundled. If running from source, run
composer install --no-devin the plugin directory first. - Upload to
/wp-content/plugins/or install via Plugins → Add New → Upload. Activate. - Set your company details under WooCommerce → Settings → AI Quotes.
- Use the AI Quotes menu to draft your first quote.
Frequently asked questions
Does this replace my existing “Request a Quote” plugin?
No — it’s a different piece of the same workflow. This plugin drafts and calculates a quote document; it doesn’t (yet) handle the customer-facing request form or checkout integration some B2B plugins provide.
Does this send the quote to the customer automatically?
Not in this version — it generates a PDF for you to download and send yourself. Automatic emailing is on the roadmap.
What happens if the AI matches the wrong product?
Every drafted line is fully editable before you finalize — fix the description, price, or swap in the correct product from the search dropdown.
Which AI provider does this use?
Whichever one you’ve connected under Settings → Connectors — this plugin has no AI integration of its own. It calls WordPress’s built-in AI Client (wp_ai_client_prompt(), core since WordPress 7.0), which routes the request to your connected provider. If no provider is connected, AI drafting is disabled and you can still build a quote manually.
Changelog
0.4.5
- Change: raised minimum PHP to 8.1 so
sabberworm/php-css-parsercan go
back to its latest release (9.4.0, was pinned to9.0.0in 0.4.4) while
itsthecodingmachine/safedependency resolves tov3.4.0instead of the
oldv1.3.3—v3.4.0uses explicit nullable-parameter types, so the
PHP 8.4+ deprecation notices from 0.4.3/earlier don’t come back. Verified:
zero deprecation notices with full error reporting on. - Fix: the PDF template’s stylesheet is now printed by WordPress core itself
(wp_print_styles()), not hand-written markup. Every previous shape here —
a literal<style>block,file_get_contents()echoed into one, a<link>
pointing at a local file path — kept getting flagged as “not enqueued” by
either the automated check or a human reviewer, even backed by real
wp_register_style()/wp_enqueue_style()calls. This removes all
hand-written stylesheet markup from the plugin; dompdf fetches the
resulting URL the same way it already fetches an optional logo image
(Options::isRemoteEnabled). Verified dompdf correctly fetches and applies
a stylesheet served over HTTP.
0.4.4
- Fix: removed a transitive dependency (
thecodingmachine/safev1.3.3, pulled
in bysabberworm/php-css-parser) that emitted PHP 8.4+ “implicitly
nullable parameter” deprecation notices on every request, even though this
plugin never calls any of its functions — Composer loads all of a
package’sfiles-autoloaded code unconditionally. Pinned
sabberworm/php-css-parser to9.0.0(the last release before that
dependency was added) instead of patching around the warnings. No
functional change — verified the CSS-parsing dompdf relies on for quote
PDFs still renders identical output, and that loading the plugin no longer
emits any deprecation notices with full error reporting on.
0.4.3
- Fix: the PDF template’s stylesheet is now genuinely registered and
enqueued withwp_register_style()/wp_enqueue_style()in
YSQD_PDF::build_html(), not just read from a file. The template outputs
a<link rel="stylesheet">for it, which dompdf resolves straight off
local disk viaOptions::setChroot()(no HTTP round-trip, no dependency
on the site’s own URL being publicly reachable). Rendered PDF output is
unchanged — verified against a real generated quote PDF.
0.4.2
- Fix: “Tested up to” bumped to 7.1 (was stale at 7.0, flagged by Plugin Check).
- No functional changes — re-confirmed via a fresh Plugin Check run that the
0.4.1 PDF-template stylesheet fix (see below) still triggers zero
enqueue-related findings.
0.4.1
- Fix: the PDF template’s stylesheet is no longer written as literal
template HTML — it’s read from its own file (assets/css/quote-pdf.css)
and echoed in PHP, which WordPress.org’s Plugin Check tool now confirms
triggers zero enqueue-related findings (the plain<style>block, and a
alternative, both did). Behavior and rendered
output are unchanged — verified against a real generated PDF.
0.4.0
- Change: AI drafting now goes through WordPress’s built-in AI Client
(wp_ai_client_prompt()) instead of calling OpenAI/Anthropic directly.
The site owner connects a provider under Settings → Connectors; this
plugin no longer stores or asks for an API key.Requires at least
raised to WordPress 7.0 accordingly. - Fix: quote.php’s PDF template markup is a standalone HTML string handed
to Dompdf, never a WordPress-served page — clarified in code comments
after a review flagged its inline<style>block as a missing
wp_enqueue_style() call.
For developers
Is this your plugin? Show off the numbers.
Add a live badge to your site, docs or GitHub README. It updates on its own — no account needed.
Best Yuupee Smart Quote Drafting f… alternatives
All AI plugins →FAQ
Yuupee Smart Quote Drafting for Woo…: quick answers
Straight answers, pulled from live WordPress.org data.
Live data from WordPress.org · checked Sep 27, 2026
Is Yuupee Smart Quote Drafting for… free?
Yes. Yuupee Smart Quote Drafting for… is free to download and use from the official WordPress.org plugin directory.
Is Yuupee Smart Quote Drafting for… safe to use in 2026?
Yuupee Smart Quote Drafting for… is a solid plugin choice in 2026, with a few things worth checking first. Was last updated 4 weeks ago, and scores 64/100 on our health check.
How many websites use Yuupee Smart Quote Drafting for…?
Yuupee Smart Quote Drafting for… is active on <10 WordPress websites and has been downloaded 112 times since it launched in August 2026. It was downloaded 115 times in the last 30 days.
Does Yuupee Smart Quote Drafting for… work with WordPress 7.1?
Yes. The developer has tested Yuupee Smart Quote Drafting for… up to WordPress 7.1.2, the latest release. It requires WordPress 7.0 or newer.
What PHP version does Yuupee Smart Quote Drafting for… need?
Yuupee Smart Quote Drafting for… requires PHP 8.1 or higher. Most hosts run PHP 8.x today, so it works on any modern WordPress hosting.
When was Yuupee Smart Quote Drafting for… last updated?
The latest version, 0.4.5, was released on August 29, 2026 (4 weeks ago).
Who makes Yuupee Smart Quote Drafting for…?
Yuupee Smart Quote Drafting for… is developed and maintained by abdoudiba.
What are the best alternatives to Yuupee Smart Quote Drafting for…?
The most popular alternatives to Yuupee Smart Quote Drafting for… are Elementor Website Builder (10M+ installs), All in One SEO (2M+ installs) and AI Agent by SiteGround (1M+ installs).
Powered by PageForge
Want thousands of pages that rank like these? Build them in an afternoon.
This directory runs on the same engine as PageForge. Turn any spreadsheet, CSV or API into thousands of fast, SEO-ready WordPress pages — with schema, internal links and AI-written copy baked in.
- CSV, Google Sheets & API data sources
- AI content, schema & internal links per page
- Works with Elementor, Gutenberg, Yoast & Rank Math
- Free on WordPress.org — no credit card