Vstore is a comprehensive e-commerce solution for e107 v2.x Bootstrap CMS. Built with flexibility and ease of use in mind, it provides everything you need to run a professional online store directly from your e107 website.
Whether you're selling physical products, digital downloads, or services, Vstore integrates seamlessly with your e107 site, offering powerful features like multiple payment gateways, advanced tax calculations, coupon management, and inventory tracking.
- Dynamic Shopping Cart: Real-time cart updates with AJAX functionality
- Guest Checkout: Allow purchases without user registration
- Multi-step Checkout: Clean, intuitive checkout flow
- Order History: Customer dashboard with order tracking
- Digital Downloads: Support for downloadable products
- Product Variations: Size, color, and custom attributes for products
- Multiple Payment Gateways:
- PayPal (Express Checkout & Standard)
- Stripe (Credit/Debit Cards)
- Mollie (iDEAL, Bancontact, and 20+ methods)
- Braintree (PayPal & Credit Cards)
- CoinPayments (Cryptocurrency)
- Bank Transfer (Manual)
- Secure Transactions: PCI-compliant payment processing
- Order Status Tracking: New, Processing, Completed, Refunded, etc.
- Coupon System:
- Percentage or fixed amount discounts
- Date range restrictions
- Category/product inclusion/exclusion
- Usage limits (global and per-user)
- Minimum order requirements
- Tax Calculation:
- EU VAT support with VIES validation
- Multiple tax rates (standard, reduced, super-reduced)
- B2B reverse charge mechanism
- Country-specific tax classes
- Automatic tax calculation based on location
- Unlimited Products: No restrictions on catalog size
- Categories & Subcategories: Organized product hierarchy
- Product Variations: Manage size, color, and custom attributes
- Inventory Tracking: Stock management with low-stock alerts
- Image Galleries: Multiple images per product with zoom
- SEO-Friendly URLs: Clean URLs for better search rankings
- Related Products: Cross-selling recommendations
- Flexible Shipping Rates:
- Flat rate shipping
- Weight-based calculation
- Free shipping options
- Per-product shipping costs
- Shipping Address Management: Separate billing and shipping addresses
- Order Notes: Customer notes and admin internal notes
- Sales Statistics: Revenue tracking and trends
- Order Reports: Detailed order information
- Product Performance: Best-sellers and inventory reports
- Customer Insights: Purchase history and behavior
- Template System: Fully customizable HTML templates
- Shortcodes: Extensive shortcode library for custom layouts
- Custom CSS: Add your own styling
- Responsive Design: Mobile-friendly out of the box
- Multi-language Support: Translation-ready with LAN files
- Intuitive Dashboard: Manage orders, products, and customers
- Bulk Actions: Edit multiple items simultaneously
- Email Templates: Customizable order confirmation emails
- Invoice Generation: Automatic PDF invoices (requires PDF plugin)
- User Permissions: Role-based access control
- Search Integration: Products searchable via e107 search
- e107 CMS: v2.3.0 or higher (Download)
- PHP: 7.4 or higher (PHP 8.x compatible)
- PHP Extensions:
- SOAP (for VAT validation)
- cURL (for payment gateways)
- JSON
- GD or Imagick (for image processing)
- Database: MySQL 5.7+ / MariaDB 10.2+
- Optional: PDF Plugin for invoice generation
-
Download the Plugin:
cd e107_plugins git clone https://github.com/Kanonimpresor/vstore.git -
Install Dependencies
⚠️ REQUIRED:cd vstore composer install --no-dev⚠️ IMPORTANT: Thevendor/directory is not included in the repository.
You MUST runcomposer installafter cloning to download all required dependencies.
Without this step, the plugin will not work and you'll see errors like:
Fatal error: Failed opening required 'vendor/autoload.php' -
Install via e107 Admin:
- Navigate to: Admin → Plugins → Manage Plugins
- Find "Vstore" in the list
- Click Install
-
Configure Settings:
- Go to: Admin → Vstore → Settings
- Configure:
- Store information (name, address, tax ID)
- Tax settings (enable VAT, tax rates)
- Payment gateways (API credentials)
- Shipping options
- Email templates
-
Create Products:
- Navigate to: Admin → Vstore → Products
- Add your first product with images and pricing
-
Test Checkout:
- Add a product to cart
- Complete a test order (use sandbox/test mode for gateways)
- Creating Your First Product
- Setting Up Payment Gateways
- Configuring Tax Settings
- Managing Coupons
- Customizing Templates
// Admin → Vstore → Settings → Tax
Business Country: PT (Portugal)
Tax Calculation: Enabled
Check VAT ID: Enabled
Tax Classes:
- Standard: 23% (Portugal)
- Reduced: 13%
- Super Reduced: 6%
// Automatic EU VAT handling:
// - PT customer (B2C): 23% VAT
// - ES customer (B2C): Spanish VAT rate
// - DE customer with valid VAT ID (B2B): 0% (reverse charge)
// - US customer: 0% (outside EU)Mode: Sandbox / Live
Client ID: YOUR_PAYPAL_CLIENT_ID
Client Secret: YOUR_PAYPAL_SECRETMode: Test / Live
Publishable Key: pk_test_...
Secret Key: sk_test_...API Key: test_... / live_...
Enabled Methods: iDEAL, Credit Card, Bancontact// In any e107 page
{VSTORE_LIST: cat=1&limit=12&orderby=price}// In menu or header
{LAN_PLUGIN_VSTORE_CARTICON}// Create custom template in templates/vstore_template.php
$VSTORE_TEMPLATE['list']['item'] = '
<div class="product-card">
{ITEM_PIC: w=300&h=300&crop=1}
<h3>{ITEM_NAME}</h3>
<p class="price">{ITEM_PRICE}</p>
{ITEM_ADDTOCART}
</div>
';We welcome contributions from the community! Here's how you can help:
- Check existing issues
- Create a new issue with:
- Clear description of the problem
- Steps to reproduce
- e107 version, PHP version, and plugin version
- Any error messages or screenshots
- Open an issue with the
enhancementlabel - Describe the feature and use case
- Explain why it would benefit other users
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Commit your changes:
git commit -m 'Add amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a Pull Request
- Testing of all features is greatly appreciated
- Test on different PHP versions (7.4, 8.0, 8.1, 8.2)
- Test payment gateways in sandbox mode
- Report compatibility issues
- Translations should occur after features are stable
- Language files located in:
languages/[Language]/ - Follow e107 LAN file standards
- Test with RTL languages if applicable
See CHANGELOG.md for detailed list of changes, bug fixes, and new features.
Latest Updates (November 2025):
- ✅ Fixed compatibility with ibericode/vat v2.x
- ✅ Resolved cart emptying when applying coupons
- ✅ Fixed shipping data validation in checkout
- ✅ PHP 8.x compatibility improvements
- ✅ Enhanced error handling and validation
- PDF Generation: Some warnings with TCPDF on PHP 8.x (non-critical)
- Email on Localhost: Requires SMTP configuration for email sending
- Cache: Clear e107 cache after template changes
- PDF warnings can be suppressed or disable PDF generation
- Use mail service like Mailtrap or Gmail SMTP for testing
- Always clear cache: Admin → System → Clear Cache
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
- ✅ Free to use for commercial and non-commercial purposes
- ✅ Modify and distribute the code
- ✅ Must disclose source code of modifications
- ✅ Must use the same GPL-3.0 license for derivatives
- Original Developer: e107 Community
- Current Maintainer: Kanonimpresor
- e107 CMS - Content Management System
- Omnipay - Payment processing abstraction
- ibericode/vat - EU VAT validation
- TCPDF - PDF generation
- e107 community for continuous testing and feedback
- Payment gateway providers for sandbox environments
- All contributors who submit bug reports and pull requests
- Documentation: Check the Wiki first
- Community Chat: Gitter Channel
- e107 Forums: e107.org Forums
- GitHub Issues: Report bugs
- GitHub: Star and watch this repository
- e107 News: e107.org
- Social Media: Follow e107 CMS updates
- More payment gateways (Authorize.net, Square, etc.)
- Advanced analytics dashboard with charts
- Product reviews and ratings
- Wishlist functionality
- Abandoned cart recovery
- Multi-vendor marketplace support
- Subscription/recurring payments
- Gift cards and vouchers
- PHP 8.x full compatibility
- Enhanced coupon system
- Complete localization (multiple languages)
- Mobile app integration
- Active Installations: Growing e107 community
- Supported Languages: English, Portuguese, Spanish (more coming)
- Payment Gateways: 6+ integrated
- Average Rating: ⭐⭐⭐⭐⭐ (Community feedback)
Made with ❤️ for the e107 CMS Community