Aircash for WooCommerce
As we promised – it couldn’t be simpler! Aircash is the fastest and easiest payment service for your customers – in just 3 clicks. We offer security in the first place, followed by the simplicity and speed that the Aircash mobile application provides. Being able to pay directly from Aircash application or using the Scan&Pay option means Aircash is the best fit both for desktop and mobile users. Our advantages Aircash is a free-of-charge mobile app accessible to everyone. Simple for implementation. The activation and enabling of the Aircash plugin can be done in just a few clicks as described on the Installation tab. Easy usage For your customers, the experience of your web shop will be even more user-friendly using Aircash. DESKTOP VISIT Click “Place order” within the web store and QR code will appear on the screen. Open the Aircash application, click the “Scan and Pay” option and scan code on your screen. With one click confirm the transaction and your order will be paid. Easy as that. MOBILE VISIT Click “Pay with Aircash” within the web store and you will be directly transferred to Aircash application. With one click confirm the transaction and your order will be paid. Easy as that. Customer does not need to enter their credit card info Many users who shop online do not feel comfortable giving out credit card details and with Aircash they don’t need to. This means that customers get confident while shopping from anywhere using the Aircash application. Cost-Effective Implementing the e-commerce system into your web shop can be an exhausting and expensive business. With Aircash you don’t have to invest, it is easy to use and to understand, and fund transfer is safe. Big customer base Every Aircash user becomes a potential customer. Keeping track of transactions You can access every transaction with access to the Aircash portal. You are able to select time periods of transactions and download a complete spreadsheet file which provides you with a detailed transaction list. Order Cancelation & Refund Select the ‘Order’ you wish to cancel and refund under the WooCommerce’s plugin ‘Orders’ tab and click the ‘Refund’ button where you choose ‘Refund via Aircash’ option. As soon as the order is refunded the status of the order will change to ‘Refunded’.
Top keywords
- aircash16×4.19%
- order7×1.83%
- click6×1.57%
- application5×1.31%
- aircash application4×1.05%
- mobile4×1.05%
- pay4×1.05%
- refund4×1.05%
- transaction4×1.05%
- web4×1.05%
- customer3×0.79%
- customers3×0.79%
WP-UserOnline
WP-UserOnline shows how many people are on your site right now, and where they are. Members are named, guests and search bots are counted, and the whole thing refreshes itself in the background without a page reload. Features A counter, a “who is browsing this page” line and a “who is browsing the site” line, each usable on its own. A full users online page, listing every visitor with the page they are on, where they came from and when they arrived. A sidebar widget offering any of those five combinations. Every string is a template you can edit, so the wording is yours rather than the plugin’s. Around three hundred search bots recognised by user agent, and a filter for adding your own. One admin screen with three tabs — who is online now, the settings, the templates — plus a line in the Dashboard’s At a Glance panel. A section on the WP-Stats page when that plugin is installed. Donations I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations. Usage The simplest way is the widget. Go to WP-Admin -> Appearance -> Widgets, add the UserOnline widget to a sidebar, and pick which of the five statistics types it should show. A classic theme can call the template tags directly instead, anywhere in sidebar.php, header.php or a template part: Users online: The element ids matter: useronline-count, useronline-browsing-site, useronline-browsing-page and useronline-details are what the refresh script looks for. A figure printed outside one of them is correct when the page loads and then stays where it is. To give visitors a page of their own listing everyone online, create a page and put the shortcode in it: [page_useronline] Everything the plugin has is at WP-Admin -> WP-UserOnline, on three tabs: Users Online for who is here right now, Settings, and Templates for the wording of everything the plugin prints. Showing Users Online In A Block One block is available in the editor, under Widgets: Users Online — everyone on the site right now, grouped into members, guests and bots, with the page each of them is reading and the most-ever-online record underneath. The same listing [page_useronline] produces. It renders on the server, so the preview in the editor is the real listing rather than an approximation, and the page updates itself while a visitor is reading it exactly as the shortcode’s does. Only one goes in a post: the listing carries its own useronline-details element and the refresh script finds it by that name. Rendering it records nobody. Previewing the block in the editor does not add you to the figures you are previewing, however many times the preview refreshes — visitors are recorded when a page is loaded, not when the listing is drawn. The shortcode still works and is not going anywhere. [page_useronline] behaves exactly as it always has, and a page already containing it needs no change. The block calls the same code the shortcode calls, so the two render identically — use whichever suits the page. WP-CLI wp useronline list wp useronline list --format=count wp useronline count The command reads and never writes. The table maintains itself — every visit purges rows that have timed out — and the admin screen offers no destructive action, so neither does the command. REST API GET /wp-json/useronline/v1/count POST /wp-json/useronline/v1/visit count reports how many are online now, the record and its date, and records nobody — so a monitoring script polling it does not appear in the figure it is reading. `visit` is the heartbeat: it records the caller and answers with one of the four views, given a `mode` of `count`, `browsing-site`, `browsing-page` or `details`, plus the `page_url` they are on. Neither route takes a nonce, and that is deliberate. A nonce cannot authenticate a logged-out visitor: anonymous nonces come from one session every such caller shares, so requiring one would prove nothing while breaking every visitor who is not signed in. A page_url that does not resolve to this site is ignored, and a heartbeat writes nothing but the caller’s own row. These routes are an addition. The admin-ajax.php wp_useronline action is unchanged and still supported.