VOOZH about

URL: https://aimeos.org/typo3-shop-extension

โ‡ฑ Aimeos > THE TYPO3 shop and ecommerce extension | Open + Free - Aimeos


Skip to main content
๐Ÿ‘ TYPO3 logo

Aimeos > THE TYPO3 shop framework
ยป Open Source & Free ยซ

ultra fast, full-featured and most widely used

๐Ÿ‘ TYPO3

TER downloads

150,000+
AimeosAimeos TYPO3aimeos-typo3The TYPO3 E-Commerce Framework๐Ÿ‘ Image
๐Ÿ‘ Capterra

Capterra reviews

4.8 / 518
๐Ÿ‘ Scrutinizer

Code quality

VERY GOOD 9.55 / 10
๐Ÿ‘ Lines

Highlights

  • For shops from one to 1 billion items that render in 100ms
  • Multi vendor, multi channel and multi warehouse capable
  • Build multi-tentant SaaS with custom domains out of the box
  • Incl. bundle, voucher, virtual, config, custom and event products
  • Turn every product into a subscription with recurring payment
  • Supports 100+ payment gateways via Omnipay PHP library
  • World class JSON REST API based on jsonapi.org standard

Take a look at the Aimeos demo setups

๐Ÿ‘ Lines

The simplest way to e-commerce in TYPO3

๐Ÿ‘ Showcases

High quality Aimeos TYPO3 themes for your online shop

๐Ÿ‘ Lines

Build your custom TYPO3 shop easily

  1. use \Aimeos\Controller\Frontend;
  2. $cntl = Frontend::create($context, 'product');
  3. $items = $cntl->uses(['text', 'media', 'price'])
  4.     ->catetory(123)->text('sneaker')
  5.     ->sort('name')->slice(0, 48)->search();
  1. use \Aimeos\Controller\Frontend;
  2. $cntl = Frontend::create($context, 'catalog');
  3. $catalog = $cntl->uses(['text', 'media']);
  4. $tree = $catalog->getTree();
  5. $list = $catalog->getPath(123);
  1. use \Aimeos\Controller\Frontend
  2. $product = Frontend::create($context, 'product');
  3. $item = $product->uses(['price'])->find('abc');
  4. $basket = Frontend::create($context, 'basket');
  5. $cart = $basket->addProduct($item)->get();