WPC Order Tip 3.3.1 – for WooCommerce

WPC Order Tip for WooCommerce-download

WordPress Plugin

Version: Product Version: 3.3.1


GNU GPL


Unlimited websites

$5.99

Save

One-time purchase

Archive checked
VirusTotal report
VirusTotal
0/66 threats detected

View report





Need more products?
Lifetime Membership $92


View Membership

  • Instant account download
  • Security checked
  • 14-day refund policy applies


Secure checkout · Instant access



Trustpilot





4.8

I tested WPC Order Tip on a fairly boring WooCommerce setup first, then on a client store that has the usual crime scene: Elementor, Checkout Field Editor, WP Rocket, Stripe, and a theme that thinks overriding every Woo template is a personality trait.

The plugin itself does one job: lets customers add a tip / donation / “buy the team coffee” amount during cart or checkout. And honestly, WPC Order Tip is refreshingly less stupid than many checkout add-ons I’ve had to babysit. It doesn’t try to become a CRM, loyalty system, popup builder, and emotional support animal. It adds a fee line, stores it with the order, and gets out of the way.

Where the settings actually live

On my install, WPC Order Tip showed up under:

WP Admin -> WPClever -> Order Tip

Older WPClever stuff sometimes also drops links around:

WooCommerce -> Settings

The useful knobs are there: predefined tip values, custom tip amount, label text, percentage/fixed style, cart/checkout display, and whether the tip is taxable. That last one matters. I’ve seen stores accidentally tax tips because nobody checked the fee behavior before going live. Fun little accounting grenade.

What you can change from the admin panel: labels, amounts, button style basics, display position, enable/disable custom amount.

What you cannot magically fix from the admin: bad theme markup, broken checkout fragments, or a checkout template that was copied from WooCommerce 4.x and left to rot in a premium theme folder.

DevTools reality check

I opened DevTools because I don’t trust checkout plugins until they earn it. With WPC Order Tip, the Network tab was mostly clean. The plugin added a small frontend script and didn’t vomit five sliders, three icon fonts, and a React app onto the checkout. Bless.

The important thing I watched was the WooCommerce AJAX call:

/?wc-ajax=update_order_review

When I clicked a tip value, checkout totals refreshed properly. If that request hangs, returns 500, or gets cached by some “performance” plugin, the tip won’t apply reliably. Not the plugin’s fault, usually. It’s almost always caching touching Woo AJAX like a drunk intern in production.

In Console, I didn’t get errors from WPC Order Tip itself. I did get one from a theme checkout script trying to bind to .payment_method_stripe before Stripe rendered it. Classic.

The annoying break I hit

On one site, WPC Order Tip looked fine on checkout but the selected tip disappeared after changing shipping method. After ten minutes of muttering, I found the theme had overridden:

/wp-content/themes/client-theme/woocommerce/checkout/review-order.php

and stripped the usual hooks around the order review table. What were they thinking? No idea. Probably “let’s make this impossible to maintain.”

My ugly-but-safe fix was not editing the plugin. I added the missing hook back into the child theme template:

do_action( 'woocommerce_review_order_before_order_total' );

Then I forced the checkout refresh after tip selection with a tiny child-theme script enqueued from functions.php:

add_action 'wp_enqueue_scripts', function () {
class="hljs-title function_ invoke__">is_checkout ()) {
wp_add_inline_script (
'wc-checkout',
jQuery(document.body).on('change click', '.wpc-order-tip input, .wpc-order-tip button', function(){ jQuery(document.body).trigger('update_checkout'); });"
);
}
});

Not pretty. Worked. I slept.

Database and order storage

The nice part: WPC Order Tip doesn’t create some mystery custom table with half-baked schema. In my test, the tip behaved like a WooCommerce fee line.

So you’ll usually find it in:

wp_woocommerce_order_items

with:

order_item_type = fee

And the related values in:

wp_woocommerce_order_itemmeta

If your client asks “where did the tip go in exports?”, check whether their export plugin includes fee lines. WP All Export can handle it, but you may need to map WooCommerce order fees manually instead of expecting a neat “tip” column to appear by magic.

Caching and JS nonsense

With WP Rocket, I had to leave WooCommerce scripts alone. Do not delay everything like a maniac.

The files I refused to delay:

jquery-core
wc-checkout
wc-cart-fragments

If you delay those, WPC Order Tip may still render, but totals won’t update consistently. That’s the kind of bug clients report as “sometimes broken,” which is developer-speak for “there goes your evening.”

LiteSpeed Cache was fine after excluding cart and checkout URLs:

/cart/
/checkout/
/?wc-ajax=*

Basic stuff, but people still cache checkout and then act surprised when money disappears.

GPL and updates

The GPL copy of WPC Order Tip I tested was fully working, no weird frontend lock, no fake “premium disabled” wall, and usable on unlimited websites. Unlimited Website Usage, plain and simple.

Activation was only relevant for official updates/support. The plugin itself didn’t need a key to function in my setup. Manual update was the normal WordPress dance:

Plugins -> Add New -> Upload Plugin

Upload the new ZIP, replace existing version, clear cache, test checkout, done. No ceremony.

If you’re importing settings, there isn’t some giant demo import ritual like with bloated themes. It’s a utility plugin, not a page-builder circus.

What I actually like

WPC Order Tip is boring in the best way. It uses WooCommerce mechanics instead of inventing a parallel checkout universe. The UI is understandable enough that a store manager can change tip values without touching code, which means I don’t get a Slack ping every time they want “10 / 15 / 20” changed to “5 / 10 / 25”.

I absolutely hate checkout plugins that hijack templates and inject layout soup. WPC Order Tip mostly avoids that. If your theme is sane, setup is quick. If your theme is not sane, well, welcome back to functions.php, my old enemy.

FAQ

Why does the tip vanish after shipping changes?

Your checkout update is broken. Check DevTools -> Network -> wc-ajax=update_order_review. If it fails, fix the PHP error or stop caching checkout.

Can I style the buttons in Elementor?

Only partly. Labels and amounts are in WPC Order Tip settings. Real styling usually needs CSS in Appearance -> Customize -> Additional CSS or the child theme stylesheet.

Why isn’t the tip in my order export?

Because it is stored as a WooCommerce fee line, not always as a dedicated “tip” field. Include order fees in your export mapping.

Does it conflict with Stripe?

Not directly in my test. Most Stripe issues came from delayed wc-checkout or themes overriding checkout templates. Exclude checkout JS from delay/defer first.

VirusTotal archive check

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 VirusTotal
WPC Price by Quantity 5.4.3 – for WooCommerce
WPC Product Timer 5.4.3 – for WooCommerce

Reviews

There are no reviews yet.

Be the first to review “WPC Order Tip 3.3.1 – for WooCommerce”

Before you send us a support request, take a quick look at our Terms Of Use and FAQs. We know nobody loves reading them, but very often the answer is already there and saves you some time.

What to do first

  1. If that doesn’t help, check the product documentation next.
    A lot of small issues come from missed settings or simple setup steps, and the docs usually clear that up pretty fast.
  2. Still not working?
    No problem — just open a support ticket and tell us what’s going on. We’ll take it from there.
  3. When to expect a reply
    We usually get back to you within 1–2 business days. Sometimes faster, depending on the issue.

How to explain the problem (this really helps)

  • Be specific
    Instead of saying “it doesn’t work,” tell us what exactly is going wrong. Which button? Which feature? What were you trying to do when it happened?
  • Add screenshots
    Screenshots make a huge difference. Seriously. A simple image (or link to one) helps us understand the issue right away and saves a lot of back‑and‑forth.

Following these steps helps us help you faster — and with fewer questions along the way. Thanks for making support easier for everyone.

Answers to common questions!

You 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.

super offers of the month