Search found 7922 matches

by aimeos
29 Jan 2019, 07:01
Forum: Help
Topic: translate current request (locale part in url)
Replies: 3
Views: 2243

Re: translate current request (locale part in url)

Aimeos supports localized product names in URLs but the locale selector doesn't have that information before switching the language. After switching from German to English, the name of the product in the URL will stay to German but if the customer clicks on another link, the URL will be completely i...
by aimeos
29 Jan 2019, 06:54
Forum: Laravel package
Topic: Create manual order
Replies: 9
Views: 3686

Re: Create manual order

Use something like this: $prodcntl = \Aimeos\Controller\Frontend\Product\Factory::createController( $context ); $prodId = $prodcntl->findItem( '<sku>' )->getId(); $basketcntl = \Aimeos\Controller\Frontend\Basket\Factory::createController( $context ); $basketcntl->addProduct( $prodId ); You also have...
by aimeos
29 Jan 2019, 06:43
Forum: Laravel package
Topic: Example pages
Replies: 20
Views: 6560

Re: Example pages

"getRefItems()" is available in all items that implement the \Aimeos\MShop\Common\Item\ListRef\Iface interface, i.e. products, categories, attributes, customers, services, prices and texts. "$item->price" and "$item->text" is undefined, you need to call $priceItems = $i...
by aimeos
29 Jan 2019, 06:36
Forum: Laravel package
Topic: How To add New Field In Product Upload Section
Replies: 1
Views: 953

Re: How To add New Field In Product Upload Section

You don't need a new tab because you can upload the PDF files in the "Images" tab (in 2019.x versions it has been renamed to "Media"). Choose "download" as the type of the PDFs and they will be listed in the product detail view for download.
by aimeos
25 Jan 2019, 07:55
Forum: TYPO3 extension
Topic: Loading Catalog Filter via Ajax
Replies: 1
Views: 957

Re: Loading Catalog Filter via Ajax

You can listen to the change event of the checkboxes and post the form data using a XHR request yourself. You will get back the HTML for the whole page but you can rip out the catalog list section and replace the existing one. That's pretty easy and we do in in the basket ourselves: - https://github...
by aimeos
25 Jan 2019, 07:51
Forum: Laravel package
Topic: Using several domains with multishop.
Replies: 1
Views: 986

Re: Using several domains with multishop.

Not sure because this is totally dependent on what Laravel can do. Sub-domain are possible according to the Laravel docs: https://laravel.com/docs/5.7/routing#ro ... in-routing
by aimeos
25 Jan 2019, 07:49
Forum: Laravel package
Topic: During Aimeos Setup Got Errors Laravel
Replies: 7
Views: 5808

Re: During Aimeos Setup Got Errors Laravel

Your database layout doesn't match those expected by the SQL statements. Please run

Code: Select all

php artisan aimeos:setup
and watch out for any errors that stop migration to the new DB layout.
by aimeos
25 Jan 2019, 07:47
Forum: Symfony bundle
Topic: MongoDB
Replies: 3
Views: 8170

Re: MongoDB

Aimeos doesn't use Doctrine ORM because it's too slow if you have many products
by aimeos
23 Jan 2019, 14:49
Forum: Laravel package
Topic: What is the best way to create blog within Aimeos?
Replies: 5
Views: 2524

Re: What is the best way to create blog within Aimeos?

For the frontend, you can use the app.blade.php file you've created for Aimeos. Either extend from that file or assign the rendered blog to the view property named "content". For the backend, you can add a new Aimeos admin client that implements create/search/save methods like this one: ht...
by aimeos
23 Jan 2019, 14:36
Forum: Laravel package
Topic: Upload a gif image to product using backend
Replies: 4
Views: 1888

Re: Upload a gif image to product using backend

This may work in 2018.10 and you need the latest version of the Aimeos core. Execute "composer update" first to get

Code: Select all

aimeos/aimeos-core: 2018.10.14