Search found 129 matches

by columbo
19 Dec 2019, 19:04
Forum: Laravel package
Topic: customize relative paths
Replies: 1
Views: 1023

customize relative paths

Hi, I'm using ameos in a subdirectory and have set "document_root/abc/public" as alias in my apache.conf Statpage is working fine so far, but all relative links are missing my subfolder "/abc" How can I add a path-prefix (like "/abc") to the generated relative paths? ge...
by columbo
11 Dec 2019, 18:47
Forum: Help
Topic: Incorrect URL path with multiple apache alias
Replies: 8
Views: 5391

Re: Incorrect URL path with multiple apache alias

how was this solved? I'm facing the same problem aimeos installed in: /document_root/shop prefix xy in shop.php: 'default' => ['prefix' => 'xy', 'middleware' => ['web']], startpage works fine: <my domain>/shop/gw but click on a product link leads to <my domain>/gw/Product_1 instead to <my domain> /s...
by columbo
05 Dec 2019, 17:27
Forum: Laravel package
Topic: Import articles with quantity based prices
Replies: 3
Views: 1690

Re: Import articles with quantity based prices

Are there any other possibilities to import product-, price- and other data? e.g. separating in several files for each domain one, product, price, category assignment? We have multiple product attributes, category assignments and multiple prices - we have now 40+ columns in the csv and counting. Is ...
by columbo
05 Dec 2019, 17:14
Forum: Laravel package
Topic: Bootstrap 4 support
Replies: 3
Views: 1974

Re: Bootstrap 4 support

Thank you aimeos, for your link to https://github.com/aimeos/aimeos/blob/m ... ss/app.css
now it is working fine.
by columbo
29 Nov 2019, 09:58
Forum: Laravel package
Topic: Import articles with quantity based prices
Replies: 3
Views: 1690

Import articles with quantity based prices

I'm importing articles and selections via csv file. I have some articles with prices based on the order-quantity, eg. EUR 10/item for 1-9 piece; EUR 8/item from 10 pieces, ...) How can I add this prices to the csv? Unfortunately I can not find any documentation for that on https://aimeos.org/docs/De...
by columbo
28 Nov 2019, 23:01
Forum: Laravel package
Topic: display variant attributes on catalog page
Replies: 5
Views: 2426

Re: display variant attributes on catalog page

unfortunately it's not working. For a simple test I added just this code on my catalog/lists page: <?php foreach( $productItem->getRefItems( 'product', null, 'default' ) as $article ) { echo $article; $attrItems = $article->getRefItems( 'attribute', null, 'variant' ); echo $attrItems; } ?> but I get...
by columbo
26 Nov 2019, 22:54
Forum: Laravel package
Topic: display variant attributes on catalog page
Replies: 5
Views: 2426

Re: display variant attributes on catalog page

I added 'attribute' to client/html/catalog/lists/domains: 'domains' => [ 0 => 'media', 1 => 'price', 2 => 'text', 3 => 'attribute' ], but I still do not get any value for attributes definded under: Products > Characteristic > Variant attributes > salesunit I tried: $productItem->getRefItems( 'attrib...
by columbo
23 Nov 2019, 10:32
Forum: Laravel package
Topic: display variant attributes on catalog page
Replies: 5
Views: 2426

display variant attributes on catalog page

Hi, I'd like to display Variant attributes (eg. salesunit) on the catalog page. I tried $productItem->getRefItems( 'attribute', null, 'variant' ), in a cutom version of /ext/ai-client-html/client/html/templates/catalog/lists/items-body-list.php but it still does not work. I'm using the wrong mehtod?...
by columbo
19 Nov 2019, 16:12
Forum: Laravel package
Topic: csv import - no success or error message, product not imported
Replies: 9
Views: 3660

Re: csv import - no success or error message, product not imported

now it's working - thank's! here my updated shop.php, maybe its usefull for others: 'import' => [ 'csv' => [ 'location' => public_path() . '/tmp', 'container' => [ 'type' => 'Directory', 'content' => 'CSV', ], 'skip-lines' => 1, ], 'mapping' => [ 'item' => [ 0 => 'product.code', // e.g. unique EAN c...
by columbo
18 Nov 2019, 22:46
Forum: Laravel package
Topic: disable-new address
Replies: 1
Views: 1038

disable-new address

Hi according to documentation the current setting to disable new addresses is: client/html/checkout/standard/address/billing/disable-new => 1 https://aimeos.org/docs/Configuration/Core/client/html/checkout/standard/address/delivery/disable-new but when I use this setting, the form still apperas. But...