Invizo Subscriptions Lite helps you sell recurring access, services, memberships, or subscription products from your WordPress site using Stripe.
You can use it in two ways:
The plugin is built for site owners who want subscription billing without turning every page into a full store. It gives you plan management, Stripe checkout, subscription records, webhook sync, and customer-facing account pages in one lightweight workflow.
Use these shortcodes on normal WordPress pages:
[invizo_store] or [invizo_plans] – show available plans.[invizo_checkout] – show the standalone checkout.[invizo_checkout plan_id="123"] – lock checkout to one plan.[invizo_account] – show the customer account area.[invizo_subscriptions] – show subscriber subscription details.[invizo_auth] – show login/register links and account actions.You can also link directly to checkout with a plan query string, for example /checkout/?plan=123.
Invizo Subscriptions Lite is useful for:
This plugin connects to Stripe services outside your site.
js.stripe.com) is loaded on checkout pages so Stripe can render secure payment fields.When a customer checks out or manages billing, the plugin may send the customer’s name, email address, selected plan, billing country/city/postal code, Stripe customer IDs, Stripe subscription IDs, payment method IDs, payment intent IDs, and related billing metadata needed to complete and maintain the subscription.
Payment card details are entered into Stripe-hosted payment fields and are handled by Stripe.
The plugin includes generated browser assets for performance and the human-readable source files needed to review and rebuild them.
assets/js/app.js and assets/css/app.css.react-ui/src/.react-ui/src/main.jsx, react-ui/src/App.jsx, react-ui/src/components/, react-ui/src/hooks/, react-ui/src/App.css, and react-ui/src/index.css.react-ui/package.json, react-ui/package-lock.json, react-ui/vite.config.js, and react-ui/index.html.cd react-ui && npm install && npm run build.These files are shipped as human-readable source:
assets/js/checkout.jsassets/css/checkout.csscss/account-portal.csscss/store.cssStripe’s PHP SDK is installed with Composer and prefixed with Strauss into InvizoSubscriptionsLiteVendor\Stripe\ under invizo-vendor/.
Stripe’s own SDK contains a cURL-based HTTP client. Those cURL calls are part of the third-party Stripe library, not plugin-specific HTTP code. Plugin-specific HTTP requests should use WordPress APIs.
The root vendor/ and node_modules/ folders are not included in the release package. The reviewable React source is included, but react-ui/node_modules/ is not.