Search found 56 matches

by DmS
28 Feb 2022, 12:25
Forum: Laravel package
Topic: Basket plugin, add rebate product -> out of stock?
Replies: 5
Views: 1301

Re: Basket plugin, add rebate product -> out of stock?

The item in $product you fetch from the database needs to have a stock item associated (can be unlimited too). As can be seen in the attached screens, the rebate product I created has unlimited stock. I don't know why I'm not seeing anything stockrelated though when I do $product->toArray() This is...
by DmS
28 Feb 2022, 09:14
Forum: Laravel package
Topic: Issue set product order in admin
Replies: 21
Views: 4272

Re: Issue set product order in admin

I set the integer value on some of the entries, based on the client saying they want to be able to place 3-4 products at the top and don't care about the rest. Do I need to have all products in the category as unique integers?

Cache cleared of course, both aimeos and browser
by DmS
25 Feb 2022, 08:36
Forum: Laravel package
Topic: Issue set product order in admin
Replies: 21
Views: 4272

Re: Issue set product order in admin

Ok, we've updated and now we can change the order in admin, but it's not reflected towards the customer which is what we expected. The product order is still the same in the category.
by DmS
24 Feb 2022, 16:03
Forum: Laravel package
Topic: Basket plugin, add rebate product -> out of stock?
Replies: 5
Views: 1301

Basket plugin, add rebate product -> out of stock?

Hi. I'm building a basket plugin that will give a rebate based on how many of certain products is bought. Example, buy 10 of prod A and pay for 8, each product costs 30. In this case the total rebate would be 30*2 = 60 So I've got the logic to match the conditions and calculate the rebate amount. It...
by DmS
15 Feb 2022, 11:16
Forum: Laravel package
Topic: Issue set product order in admin
Replies: 21
Views: 4272

Issue set product order in admin

Hi. In admin, I want to set a default order of products in a category. Basically control which products should be on top for the customer by default. If I understand it correctly, this should be done by going into Catalog->Categories, select a category, go to the tab "Products" Then you sh...
by DmS
23 Dec 2021, 13:40
Forum: Laravel package
Topic: Changing root site code from default breaks parts of site
Replies: 5
Views: 1317

Re: Changing root site code from default breaks parts of site

Great!
Thank you, that was pretty much the solution I was thinking of, but didn't want to do in core files :)

A merry Christmas and a happy new year to you all!
by DmS
22 Dec 2021, 08:39
Forum: Laravel package
Topic: Changing root site code from default breaks parts of site
Replies: 5
Views: 1317

Re: Changing root site code from default breaks parts of site

Might have been unclear here. I have one domain, that's the same for all. I don't want separate domains for the vendor sites. I'm using the marketplace extension, so all "sub-sites" have their own name/site-code, but the parent site sitecode is named "default" in the original ins...
by DmS
20 Dec 2021, 15:34
Forum: Laravel package
Topic: Changing root site code from default breaks parts of site
Replies: 5
Views: 1317

Changing root site code from default breaks parts of site

Hi. Customer wants the url to be <domain>/marketplace/<category/product etc> So I've changed the shop domain in admin configuration -> settings from default to marketplace Then I've removed the /shop in shop.php for default prefix : 'default' => ['prefix' => '{site}/', 'middleware' => ['web']], Most...
by DmS
29 Oct 2021, 14:37
Forum: Laravel package
Topic: Show category tree in url
Replies: 2
Views: 878

Re: Show category tree in url

Thank you. - "Change templates for urls & add appropriate routes." Ok that's expected, even if I was hoping for it being a choice in config :) Is there any spot in the docs that points me to where the templates in question are? - "the way Old shops do" I agree, I've also show...
by DmS
28 Oct 2021, 09:33
Forum: Laravel package
Topic: Show category tree in url
Replies: 2
Views: 878

Show category tree in url

I've read the docs and can't really find if this is possible, and if so, how. Is there any way to easily configure aimeos to create the urls like this: .../<top-category-url-segment>/<sub-category-url-segment>/<product-url-segment> As default it only adds the url-segment of the category or product y...