BLACK FRIDAY
Save 59% on PageForge Annual $191/year $485/year
Claim 59% Off →
Yuupee Smart Quote Drafting for WooCommerce icon
Actively maintained Tested with WP 7.1

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.

Active installs<10New
Downloads · 30d115• 0% vs prev. 30d
Rating—0 reviews
Health score64/100Good
All-time downloads112Since Aug 2026
Support resolved—No recent threads
RequiresWP 7.0PHP 8.1+
Downloads · 7d13▼ -13.3% week over week
Our verdict

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 & support

Daily downloads

91928Aug 29Sep 12Sep 26
Yesterday4
Daily average (1y)4
Peak day38Aug 29, 2026
Last 12 months115

Download spikes usually follow a new release — each site that auto-updates counts as a download.

Rankings

Where Yuupee Smart Quote Drafting… stands today

WordPress.org search rankings

Live position in the plugin search, top 100
KeywordPositionCompeting pluginsCategory
AI >100 6,399 Best AI plugins →
b2b >100 684 Best b2b plugins →
quote >100 2,784 Best quote plugins →
request a quote >100 1,537 Best request a quote plugins →
woocommerce >100 10,000 Best woocommerce plugins →

About Yuupee Smart Quote Drafting for WooComm…

From the official readme · v0.4.5

Description

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:

Only whichever provider the site owner has connected is ever called.

Installation

  1. 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).
  2. If installing from a release zip, the PDF library is already bundled. If running from source, run composer install --no-dev in the plugin directory first.
  3. Upload to /wp-content/plugins/ or install via Plugins → Add New → Upload. Activate.
  4. Set your company details under WooCommerce → Settings → AI Quotes.
  5. 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-parser can go
    back to its latest release (9.4.0, was pinned to 9.0.0 in 0.4.4) while
    its thecodingmachine/safe dependency resolves to v3.4.0 instead of the
    old v1.3.3 — v3.4.0 uses 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/safe v1.3.3, pulled
    in by sabberworm/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’s files-autoloaded code unconditionally. Pinned
    sabberworm/php-css-parser to 9.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 with wp_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 via Options::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.

Full changelog on WordPress.org →

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.

Active installs badge Rating badge Health score badge

Best Yuupee Smart Quote Drafting f… alternatives

All AI plugins →
Alternatives
Rank Plugin Active installs Rating Updated Health
1 Elementor Website Builder – more than just a page builder Elementor Website Builder – more than just a page builder The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel… by Elementor 10M+ ★★★★★★★★★★ 4.5 (7.3K) 3 days ago 93
2 All in One SEO – AI SEO Plugin to Boost SEO Rankings & Traffic (Schema, Local SEO, Sitemap & SEO Insights) All in One SEO AIOSEO is the WordPress SEO plugin. Boost SEO rankings with AI SEO tools, schema, meta… by Syed Balkhi 2M+ ★★★★★★★★★★ 4.7 (5.2K) 4 days ago 98
3 AI Agent by SiteGround AI Agent by SiteGround Manage your WordPress site with AI - create content, install plugins, and perform site… by SiteGround 1M+ ★★★★★★★★★★ 1.6 (96) 4 weeks ago 66
4 Premium Addons for Elementor – AI-Ready Elementor Addons, Widgets & Templates Premium Addons for Elementor 90+ Elementor widgets & addons, 600+ templates, Mega Menu, WooCommerce, Display Conditions… by Leap13 600K+ ★★★★★★★★★★ 4.9 (1.7K) 3 days ago 96
5 Angie – Agentic AI Angie – Agentic AI Build anything your site needs. Manage it through an agentic AI conversation inside… by Elementor 100K+ ★★★★★★★★★★ 3.1 (18) 5 days ago 73
6 AI Engine – The Chatbot, AI Framework & MCP for WordPress AI Engine – The Chatbot, AI Framework & MCP for WordPress AI meets WordPress. Your site can now chat, write poetry, solve problems, and maybe make… by Jordy Meow 90K+ ★★★★★★★★★★ 4.9 (867) 2 days ago 96
7 AI Provider for Anthropic AI Provider for Anthropic Anthropic (Claude) provider for the PHP AI Client SDK. by WordPress.org 60K+ ★★★★★★★★★★ No reviews 1 month ago 59
8 AI AI AI features, experiments and capabilities for WordPress. by WordPress.org 50K+ ★★★★★★★★★★ 4.6 (9) 1 month ago 84
9 AI Provider for OpenAI AI Provider for OpenAI AI Provider for OpenAI for the PHP AI Client SDK. by WordPress.org 50K+ ★★★★★★★★★★ No reviews 6 days ago 63
10 AI Provider for Google AI Provider for Google Google AI (Gemini) provider for the PHP AI Client SDK. by WordPress.org 40K+ ★★★★★★★★★★ No reviews 6 days ago 78

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
Sarah is here to help!
Hi there! 👋 Need help finding what you're looking for?
Sarah
Sarah
Online & Ready to Help
Hi there! 👋 Need help finding what you're looking for?

We'll use this to continue our conversation

Just now ✓ Verified

Join 500+ SEO Pros Scaling Their Strategy

Get exclusive programmatic SEO tactics, AI content workflows, and the latest PageForge updates delivered straight to your inbox. Stay ahead of the algorithm.

We care about your data in our privacy policy.