Pedido Mínimo para WooCommerce
by Daniel F Ramos (art2web) · eCommerce
Plugin para configurar valor mínimo ou quantidade mínima de items para finalização de pedidos no WooCommerce. O plugin também permite selecionar funçã …
70 health vs 68 average across 5,563 eCommerce plugins
Directory ranking optimization
How it's scored →How well this listing is tuned to rank in WordPress.org search, on the factors an owner controls. Not popularity, optimization.
Well optimized
Biggest win: Rating quality
To rank higher: Too few reviews to rank on quality — nudge happy users to leave one.
Get the full rank-higher report →Daily downloads
Since 2022-10-05 · 1,425 days · wp.org + Plugin Pulse archive
30-day downloads
Rolling 30-day volume · peaks are release surges
221
now · peak 714
Directory rank vs rivals
wp.org popularity rank over time · higher is better · when a rival's line climbs above yours, they've overtaken you
Rating trend
Star average over time · dips mark rough releases
Update activity
How busy the existing users are, measured as downloads in the last 30 days for every 1,000 active sites. A spike means a new release everyone's pulling; a long, slow decline means an aging user base that updates less.
Release cadence
Occasionally updatedHow often this plugin actually ships. A steady rhythm is the maintenance signal a single "last updated" date can't show.
1
releases in the last 12 months
11mo ago
latest release · v3.0.0
10
tagged releases on record
Recent releases
What its installed base runs
via wordpress.orgShare of active installs on each version of this plugin · 48% run the current release. Green is the current release; a big slice on older versions is a user base that has stopped updating.
Estimated active installs
The public count shows “1K+”. Our estimate pins where the real number sits.
Refined from the date this plugin crossed into its current band.
Install history · since 2020-09-18 · 1,420 observations
Estimated value
What this plugin might earn a year, and what it might sell for. Modeled from public signals; we don't see anyone's books.
Est. annual revenue
Est. acquisition value
No paid tier is visible, so we don't put a figure on revenue or sale value: that would be guessing. The install base is a real asset to an acquirer, just not one public data lets us price. A small install base leaves thin data to model from.
Details
Recent reviews
All reviews on wp.org ↗- ★★★★★ vargas775.2y ago
Não funciona bem, o suporte é ruim não tem suporte ..rsrsrsr
Read on wp.org ↗ - ★★★★★ fcipolla5.3y ago
Complite destroy my checkout. Cust me days to discover that was it to block the checkout.
Read on wp.org ↗ - ★★★★★ pagreda19725.6y ago
Muy bueno pero sale un warning: Warning: Undefined array key “bacs” in C:\xampp\htdocs\tacosmtyperu\wp-content\plugins\wc-pedido-minimo\inc\load-admin-settings.php on line 170
Read on wp.org ↗ - ★★★★★ pa136.2y ago
Como dejo el plugin en español?
Read on wp.org ↗ - ★★★★★ pedrojg6.3y ago
Funciona genial lo recomiendo
Read on wp.org ↗ - ★★★★★ belen876.3y ago
`<?php add_action( ‘woocommerce_check_cart_items’, ‘wc_pedido_minimo_function’ ); function wc_pedido_minimo_function() { $pedido_minimo_onoff = get_option( ‘wc-pedido-minimo-onoff’, false ); $wc_pedido_minimo_get_current_role = wc_pedido_minimo_get_current_role(); $pedido_minimo_usuarios = get_option( ‘wc-pedido-minimo-usuarios’, false ); if( (is_cart() || is_checkout()) && $pedido_minimo_onoff == ‘yes’ && ($pedido_minimo_usuarios == ” || $pedido_minimo_usuarios == $wc_pedido_minimo_get_current_role) ) { global $woocommerce; $total_carrinho_valor = WC()->cart->subtotal; $total_carrito_cantidad = WC()->cart->get_cart_contents_count(); $pedido_minimo_funcionamento = get_option( ‘wc-pedido-minimo-funcionamento’, false ); $pedido_minimo_valor = get_option( ‘wc-pedido-minimo-valor’, false ); $pedido_minimo_quantidade = get_option( ‘wc-pedido-minimo-cantidad’, false ); if( $pedido_minimo_funcionamento == ‘valor’ ) { if( $total_carrito_valor < $pedido_minimo_valor ) { $saldo = wc_price($pedido_minimo_valor – $total_carrito_valor); $mensagem = ‘<p>’.esc_html__( ‘Necesita comprar %s más para alcanzar el valor mínimo de la tienda.’, ‘wc-pedido-minimo’).'</p></div>’; if ( $total_carrito_valor !== 0 ) { $simbolo_moeda = get_woocommerce_currency_symbol(); wc_add_notice( sprintf( ‘<div class=”alerta_pedido_minimo”><p>’.esc_html__(‘O Pedido debe tener o valor mínimo de’, ‘wc-pedido-minimo’).’ <strong>’.$simbolo_moeda.’ %s</strong>.</p>’.'<p>’.esc_html__(‘O Valor total de su pedido ahora es de’, ‘wc-pedido-minimo’).’ <strong> %s</strong>.</p>’.$mensagem, wc_price($pedido_minimo_valor), wc_price($total_carrito_valor), $saldo ), ‘error’ ); } } } elseif( $pedido_minimo_funcionamento == ‘cantidad’ ) { if( $total_carrito_cantidad < $pedido_minimo_cantidad ) { $saldo = $pedido_minimo_cantidad – $total_carrito_cantidad; if ( $saldo == 1 ) { $txtItem = ‘item’; } elseif ($saldo > 1) { $txtItem = ‘itens’; } $mensagem = ‘<p>’.esc_html__( ‘Necesita comprar %s ‘.$txtItem.’ para alcanzar el valor mínimo de la tienda.’, ‘wc-pedido-minimo’).'</p></div>’; if ( $total_carrito_cantidad !== 0 ) { if ( $total_carrito_cantidad== 1 ) { $txtItem = ‘item’; } else { $txtItem = ‘itens’; } wc_add_notice( sprintf( ‘<div class=”alerta_pedido_minimo”> <p>’.esc_html__(‘O Pedido debe tener la cantidad mínima de’, ‘wc-pedido-minimo’).’ <strong>%s itens</strong>.</p>’.'<p>’.esc_html__(‘Su pedido ahora propio’, ‘wc-pedido-minimo’).’ <strong> %s ‘.$txtItem.'</strong>.</p>’.$mensagem, $pedido_minimo_quantidade, $total_carrito_quantidade, $saldo ), ‘error’ ); } } } } } function wc_pedido_minimo_get_current_role() { if( is_user_logged_in() ) { $user = wp_get_current_user(); $role = ( array ) $user->roles; return $role[0]; } else { return false; } }
Read on wp.org ↗ - ★★★★★ perepau757.1y ago
Hola me gustaria saber si se puede hacer pedido minimo en un solo un producto
Read on wp.org ↗ - ★★★★★ Diego Artur7.3y ago
Simples e objetivo.
Read on wp.org ↗
Behavioral tests
via WP HiveAutomated install-time checks, tested on PHP 8.1.12 · WP 6.9
Languages
via translate.wordpress.orgTranslated into 2 languages, 0 at 90% or more
Growth timeline
Install-tier crossings we have observed, and how long each tier took to outgrow
- 2025-10-07 2K+ → 1K+ down after 548 days in tier
- 2024-04-07 3K+ → 2K+ down
Competes with
The plugins that solve the same job, ranked by shared tags then reach, closest match first. The letter on the right is each plugin's health grade (A best, F worst).
-
Google for WooCommerce 800K+ installs · 2.8★ · 1 shared tag B
-
WooCommerce PayPal Payments 800K+ installs · 2.9★ · 1 shared tag B -
WooCommerce Stripe Payment Gateway 700K+ installs · 3.1★ · 1 shared tag B -
WooCommerce Tax (formerly WooCommerce Shipping & Tax) 500K+ installs · 2.2★ · 1 shared tag C -
WooCommerce Legacy REST API 400K+ installs · 2.2★ · 1 shared tag D
-
PDF Invoices & Packing Slips for WooCommerce 300K+ installs · 4.9★ · 1 shared tag A
Embed this report card
Drop a live Pulse card for Pedido Mínimo para WooCommerce into a readme, a review or a deck. It updates itself.
<iframe src="https://plugins.wpmayor.com/embed/wc-pedido-minimo" width="480" height="300" style="border:0" loading="lazy" title="Pedido Mínimo para WooCommerce — Plugin Pulse"></iframe> Pedido Mínimo para WooCommerce: 1K+ active installs, 3.9★ (9 reviews). Plugin Pulse (WP Mayor), as of 2026-08-29. https://plugins.wpmayor.com/plugin/wc-pedido-minimo