Description
There are many WooCommerce account plugins. Three things make this one different, and all three are checkable rather than claimed.
It is 79 KB, and 10 KB of that reaches a browser. The whole plugin is eleven files, 18 KB of which is the GPL text itself. A customer downloads 7.7 KB of CSS and 2.5 KB of JavaScript — 2.4 KB and 1.2 KB gzipped — and only on the page carrying the shortcode. No jQuery on the front end, no framework, no icon font, no bundled library, no build step, no vendor folder.
It contacts nothing. No update check of its own, no telemetry, no analytics, no account to create, no external font or script. Search the source for wp_remote and there are no matches. Nothing about your shop or your customers leaves the server.
The stylesheet does not name a single colour. Every rule reads a custom property, and the properties come from your settings — so the whole panel is recoloured from one screen, by somebody who does not write CSS, and an update never overwrites the choice. There is a separate palette for dark, and you decide whether dark follows the visitor’s own system setting, is always on, or never.
What it does
Put [nabupanel_lite] on a page and that page is your customers’ panel: how many orders they have placed and the last few of them, everything they can download, the addresses on file, and their own name and e-mail. You choose which tabs appear and in what order.
What it is not
It is not a page builder, and it does not replace WooCommerce’s own account pages — it is a separate page you make, and it links back to WooCommerce for editing an address. Your account page keeps working exactly as it did.
The panel works without JavaScript
Every tab is a link and the profile form is a form. The one script adds a light/dark switch on top, which is why it is only offered when you have left that choice open.
Right-to-left
Written with logical properties throughout, so it mirrors with your site rather than against it. Translations are contributed through translate.wordpress.org.
Nothing here is locked
Every feature this plugin implements is available to everybody, always. There is no licence key, no trial, no counter, no feature switched off until you pay, and no part of the code that checks whether you are entitled to run it. What is in the download is what it does.
If you also run NabuPanel
NabuPanel is a separate, larger plugin from the same author, and it contains this same panel. Installing it makes this plugin deactivate itself and say so, because two panels answering one shortcode on one page is a conflict rather than a choice. Nothing is deleted — deactivate the other and this comes back with the settings it had. This is the only condition under which this plugin stops running, and it has nothing to do with payment.
Screenshots



Installation
- Install and activate, with WooCommerce already active.
- Create a page and put
[nabupanel_lite]on it. - Open WooCommerce Customer panel to choose the tabs and the colours.
FAQ
-
Does it replace the WooCommerce account page?
-
No. It is a separate page you make, and it links back to WooCommerce’s own screens for editing an address. Your account page keeps working exactly as it did.
-
Does it send anything anywhere?
-
No. It makes no outbound HTTP request at all.
-
Is anything switched off until I pay?
-
No. There is no licence key, no trial and no feature gate anywhere in the code. Everything the plugin implements runs for everybody.
-
What happens if I also install NabuPanel?
-
This plugin deactivates itself, tells you why, and leaves everything alone — the two contain the same panel and would otherwise both answer on the same page. Deactivate the other and this comes back with the settings it had.
-
Can I choose which tabs appear?
-
Yes — they are a comma-separated list on the settings screen, and the order you type is the order they appear. Leave one out and it is not shown.
-
Does it work with a right-to-left language?
-
Yes. The markup and styles are written with logical properties, so the panel mirrors naturally with your site. Community translations are handled through translate.wordpress.org.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“NabuPanel Lite” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “NabuPanel Lite” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.0.2
- Dropped
woocommercefrom the tags. It is another project’s trademark, and the directory refuses a plugin that claims one — the dependency is still stated in the description and in theWC requires at leastheader, which is where it belongs. - Corrected the stated size. The readme claimed 34 KB and thirteen files; it is 79 KB and eleven, 18 KB of that being the GPL text. A readme that says its claims are checkable has to survive being checked.
- Renamed the class files from
class-npl-*.phptoclass-nabupanel-lite-*.php. WordPress loads plugin classes by filename, so an abbreviation in the path is a name any other plugin can collide with — the same reason the prefixes were lengthened in 1.0.1, finished for the files themselves. - Enqueued the panel’s inline CSS through
wp_add_inline_style()rather than printing a<style>tag.
1.0.1
- Lengthened the plugin prefix from
npl_/NPL_tonabupanel_lite_/NabuPanelLite_/NABUPANELLITE_to avoid naming collisions. - Removed the
bin/make-pot.phpdevelopment script so the plugin does not write files into its own folder. - Added
ABSPATHexit guards to all runtime PHP files.
1.0.0
- First release.