Title: ConfigQuote
Author: ConfigQuote
Published: <strong>July 31, 2026</strong>
Last modified: July 31, 2026

---

Search plugins

![](https://ps.w.org/configquote/assets/banner-772x250.png?rev=3630014)

![](https://ps.w.org/configquote/assets/icon.svg?rev=3630014)

# ConfigQuote

 By [ConfigQuote](https://profiles.wordpress.org/configquote/)

[Download](https://downloads.wordpress.org/plugin/configquote.1.0.39.zip)

 * [Details](https://wordpress.org/plugins/configquote/#description)
 * [Reviews](https://wordpress.org/plugins/configquote/#reviews)
 *  [Installation](https://wordpress.org/plugins/configquote/#installation)
 * [Development](https://wordpress.org/plugins/configquote/#developers)

 [Support](https://wordpress.org/support/plugin/configquote/)

## Description

This plugin connects your WooCommerce store to a [ConfigQuote](https://configquote.com)
account, letting customers configure complex or custom products and request a quote
instead of adding a fixed-price item to the cart.

**Features**

 * Automatically replaces “Add to Cart” with “Request Quote” for products mapped
   in your ConfigQuote account
 * Modal popup or full-page redirect to the ConfigQuote quote builder
 * No customer account required to request a quote
 * Settings integrated into WooCommerce  Settings  ConfigQuote
 * Built-in connection test to verify the integration is working
 * Optional webhook endpoints so ConfigQuote can push quote status updates back 
   into WooCommerce
 * Multi-product quote requests
 * Customer-facing quote history in the “My Account” dashboard
 * Debug mode with logging via the standard WooCommerce logger

**Requires a ConfigQuote account**

This plugin is a connector: it requires an active [ConfigQuote](https://configquote.com)
account to configure products, receive quote requests, and manage quotes. It does
not provide a quote builder on its own.

#### External services

This plugin connects to third-party services to provide its functionality. Details
of what is sent and to whom:

 * **ConfigQuote application (the URL you configure under WooCommerce  Settings  
   ConfigQuote, e.g. `https://app.configquote.com` or your own ConfigQuote tenant
   URL).** The plugin sends WooCommerce product IDs, product configuration lookups,
   and customer-submitted quote details (name, email, and any fields you enable 
   in the quote form) to this URL so ConfigQuote can build the configurator and 
   process quote requests. It also polls this URL for quote status and, optionally,
   receives webhook callbacks from it. This connection is required for the plugin
   to function and is authenticated with a Bearer token you generate in your ConfigQuote
   account.
    [ConfigQuote Terms of Service](https://configquote.com/terms) | [ConfigQuote Privacy Policy](https://configquote.com/privacy)
 * **Google Fonts (fonts.googleapis.com).** When a mapped product uses the personalized-
   artwork preview overlay, the customer’s browser loads the font families used 
   in that artwork directly from Google Fonts’ CDN.
    [Google Fonts Privacy Policy](https://developers.google.com/fonts/faq/privacy)

## Installation

 1. Upload the plugin files to `/wp-content/plugins/configquote`, or install the plugin
    through the WordPress admin: Plugins  Add New  Upload Plugin.
 2. Activate the plugin through the “Plugins” screen in WordPress.
 3. Go to WooCommerce  Settings  ConfigQuote and enter your ConfigQuote Application
    URL.
 4. Click “Test Connection” to verify the integration.
 5. In your ConfigQuote admin panel, map WooCommerce products to ConfigQuote configurations.

## FAQ

### Do I need a ConfigQuote account to use this plugin?

Yes. The plugin connects your WooCommerce store to a ConfigQuote account where products
are configured and quotes are managed. See https://configquote.com.

### The “Request Quote” button isn’t appearing on my product

Check that the product has a configuration mapping in your ConfigQuote admin panel,
that the plugin is activated, and that the connection test in WooCommerce  Settings
ConfigQuote succeeds.

### The connection test fails

Verify the ConfigQuote Application URL is correct and reachable from your server,
and that no firewall or security plugin is blocking outbound requests.

### The quote modal doesn’t open

Check your browser’s developer console for JavaScript errors, confirm your theme
doesn’t conflict with the modal markup, and try switching to redirect mode in the
plugin settings.

### How do I see debug logs?

Enable “Debug Mode” in WooCommerce  Settings  ConfigQuote, then view the logs under
WooCommerce  Status  Logs (source: `configquote`).

### Does this plugin store customer data?

Quote submissions (contact details and configuration selections) are sent to your
ConfigQuote account for processing; see the External Services section above for 
details of what is sent and where.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“ConfigQuote” is open source software. The following people have contributed to 
this plugin.

Contributors

 *   [ ConfigQuote ](https://profiles.wordpress.org/configquote/)

[Translate “ConfigQuote” into your language.](https://translate.wordpress.org/projects/wp-plugins/configquote)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/configquote/), check
out the [SVN repository](https://plugins.svn.wordpress.org/configquote/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/configquote/) by
[RSS](https://plugins.trac.wordpress.org/log/configquote/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.39

 * Fix: “Test Connection” always failed with “Please enter a ConfigQuote base URL”
   after the 1.0.38 option rename — the admin JS was still reading the old field
   IDs (woocommerce_configquote_base_url / _api_token)

#### 1.0.38

 * Rename all options from the generic “woocommerce_configquote__” prefix to the
   plugin’s own unique “configquote\__” prefix, per WordPress.org’s uniqueness requirement
 * Rename the non-persisted settings-section field IDs the same way for consistency

#### 1.0.37

 * Silence residual meta_query slow-query scanner warnings on the two authenticated
   sync/search REST endpoints, with justification (no dedicated taxonomy exists 
   for these lookups; both are bounded, low-frequency, server-to-server calls)

#### 1.0.36

 * Silence residual nonce-verification scanner warnings on the product-meta checkbox
   save callbacks (the checks were already present via a shared helper method that
   the static analyzer couldn’t trace through)

#### 1.0.35

 * Remove the nonexistent Domain Path header (no languages/ folder is shipped)
 * Add nonce verification to the product-meta checkbox save callbacks and guard 
   against undefined array indexes on $_POST reads
 * Add missing translators comments and unslash all remaining $_POST fields before
   sanitizing
 * Rename the wc_configquote_settings filter hook to configquote_wc_settings (plugin-
   prefixed hook names)
 * Replace date() with gmdate() in outgoing webhook test payloads
 * Remove a redundant error_log() call already covered by the WooCommerce logger
 * Escape the remaining pagination markup output

#### 1.0.34

 * Move the WooCommerce settings “Test Connection” script and the My Account quote-
   badge styles out of inline `<script>`/`<style>` output into properly enqueued/
   localized assets
 * Escape all remaining translated strings at output (esc_html_e/esc_html__/wp_kses_post)
   per WordPress.org coding standards
 * Require the ConfigQuote API token on the `/status` REST endpoint instead of leaving
   it publicly accessible
 * Remove two unnecessary wp-admin core file includes from the media upload endpoint
 * Remove load_plugin_textdomain() call (unneeded for WordPress.org-hosted plugins
   since WP 4.6)

#### 1.0.33

 * Fix: the “not connected” admin notice now checks whether an API token has been
   entered instead of the base URL (which always has a default value), so stores
   that install the plugin without an existing ConfigQuote account are actually 
   notified
 * Notice and the API Token field now link directly to ConfigQuote’s pricing/signup
   page

#### 1.0.32

 * Add multi-product quote requests
 * Display customer quote history in the My Account dashboard
 * Fix redirect-to-product behavior after quote submission

#### 1.0.28 – 1.0.31

 * Add embed theme mode configuration for the quote builder iframe
 * Add preview iframe visibility toggle based on step type
 * Add real-time updates for 3D selection changes in the preview iframe
 * Implement font prefetching for the personalized artwork overlay

#### 1.0.11 – 1.0.26

 * Add personalized artwork overlay on product images, including print zone rendering
 * Add company phone and additional customer fields to the quote request form
 * Add multi-product quote cart functionality
 * Remove the `allow` attribute from the quote builder iframe for improved security
 * General debug logging and reliability improvements

#### 1.0.4 – 1.0.10

 * Add filters to customize the Add to Cart text/URL override for ConfigQuote products
 * Add media upload support for quote attachments
 * Add setting to control the product configuration view
 * Adjust action hooks for quote request button placement

#### 1.0.1 – 1.0.3

 * Add order status webhook handling
 * Add product search via the ConfigQuote API
 * Add API connection tests

#### 1.0.0

 * Initial release: WooCommerce settings integration, connection testing, webhook
   support, debug mode

## Meta

 *  Version **1.0.39**
 *  Last updated **4 hours ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 5.0 or higher **
 *  Tested up to **7.0.2**
 *  PHP version ** 7.4 or higher **
 * Tags
 * [configurator](https://wordpress.org/plugins/tags/configurator/)[custom products](https://wordpress.org/plugins/tags/custom-products/)
   [quote](https://wordpress.org/plugins/tags/quote/)[request a quote](https://wordpress.org/plugins/tags/request-a-quote/)
   [woocommerce](https://wordpress.org/plugins/tags/woocommerce/)
 *  [Advanced View](https://wordpress.org/plugins/configquote/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/configquote/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/configquote/reviews/)

## Contributors

 *   [ ConfigQuote ](https://profiles.wordpress.org/configquote/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/configquote/)