About This Widget
This is a fully functional online ordering widget that can be embedded into any restaurant website. It features:
- 🎨 Modern, responsive design inspired by DoorDash and Toast
- 📱 Mobile-friendly interface
- 🛒 Smart shopping cart with quantity controls
- 🔧 Customizable branding and colors
- 📦 Real-time inventory integration
- 🔔 Live order notifications to POS system
- 💳 Secure checkout process
🚀 Setup Instructions
- Configure your widget settings in the dashboard
- Set up your menu items and categories
- Copy the embed code from Widget Settings
- Paste the code into your website
- Orders will appear in your POS system automatically!
Embed Code Example
To add this widget to your website, use the following code:
<!-- Payflow POS Online Ordering Widget -->
<div id="payflow-ordering-widget"></div>
<script>
(function() {
var script = document.createElement('script');
script.src = 'https://your-domain.com/widget.js';
script.onload = function() {
PayflowWidget.init({
organizationId: 'your-organization-id',
containerId: 'payflow-ordering-widget'
});
};
document.head.appendChild(script);
})();
</script>