by URBO
1 (0 reviews)
URBO Payment Initiation Service (PIS) for WooCommerce
Accept direct bank payments in your WooCommerce store using URBO Payment Initiation Service (PIS).
Compatible with WP 7
vtrunk
Current Version vtrunk
Updated 1 month ago
Last Update on 22 Jun, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#56,961
+2557 this week
Active Installs
1+
—
No change
KW Avg Position
1
—
No change
Downloads
80
—
Total downloads
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
56,170
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 8 more installs to reach 10+
Rank Changes
Current
#56,961
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| urbo | 1 | — | Tag | 1 day ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Jun 22, 2026
- Requires WP
- 5.8+
- Tested Up To
- 7
- PHP Version
- 8.1 or higher
- Author
- URBO
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Adminify – White Label, Admin Menu Editor, Login Customizer
7K+ installs
#2,737
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits
30K+ installs
#990
WooCommerce
7M+ installs
#6
MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)
2M+ installs
#24
ManageWP Worker
1M+ installs
#54
Frequently Asked Questions
Common questions about URBO Payment Initiation Service (PIS) for WooCommerce
URBO Payment Initiation Service (PIS) allows customers to pay directly from their bank account.
Yes, a URBO Payment Initiation Service (PIS) merchant account is required. Contact URBO at info@urbo.lt.
Yes, the plugin is fully compatible with the WooCommerce Blocks-based checkout.
The minified file assets/blocks/urbo-mip-bank/index.js is the compiled production output. The corresponding human-readable source is included in the plugin package at includes/blocks/urbo-mip-bank/index.js, so the uncompressed code ships alongside the compiled version. The build uses @wordpress/scripts. The build tooling (package.json and webpack.config.js) is not included in the distributed plugin package, so to regenerate the compiled file, create the two files below in the plugin directory, then run npm install followed by npm run build. No external repository is needed. package.json: { "name": "urbo-mip-for-woocommerce", "private": true, "scripts": { "build": "wp-scripts build", "start": "wp-scripts start" }, "devDependencies": { "@woocommerce/dependency-extraction-webpack-plugin": "^2.2.0", "@wordpress/scripts": "^30.0.0" } } webpack.config.js: const defaultConfig = require( '@wordpress/scripts/config/webpack.config' ); const WooCommerceDependencyExtractionWebpackPlugin = require( '@woocommerce/dependency-extraction-webpack-plugin' ); const path = require( 'path' ); module.exports = { ...defaultConfig, entry: { 'urbo-mip-bank/index': path.resolve( __dirname, 'includes/blocks/urbo-mip-bank/index.js' ), }, output: { path: path.resolve( __dirname, 'assets/blocks' ), filename: '[name].js', }, plugins: [ ...defaultConfig.plugins.filter( ( plugin ) => plugin.constructor.name !== 'DependencyExtractionWebpackPlugin' ), new WooCommerceDependencyExtractionWebpackPlugin(), ], };