Search found 44 matches

by michal.fehér
06 Dec 2018, 08:17
Forum: Laravel package
Topic: Nasty bug for custom attributes
Replies: 1
Views: 1159

Nasty bug for custom attributes

When you dont have any attributes with code "custom" in mshop_attribute table, you get error on saving any product in admin - No item found for conditions: Array ( [attribute.code] => custom [attribute.domain] => product [attribute.type.code] => price [attribute.type.domain] => product )
by michal.fehér
03 Sep 2018, 15:07
Forum: Help
Topic: Customer or customer group specific items
Replies: 10
Views: 5809

Re: Customer or customer group specific items

Hi Norbert, the only way how to make the extension work is to make this change: // $groupIds = $context->getGroupIds(); $groupIds = (DB::table('users_list')->select('refid')->where('typeid', 3)->where('parentid', $userId)->get()->pluck('refid')->toArray()); in ext/ai-customergroups/lib/custom/src/MS...
by michal.fehér
28 Aug 2018, 06:05
Forum: Help
Topic: Customer or customer group specific items
Replies: 10
Views: 5809

Re: Customer or customer group specific items

Thanks Norbert for the reply.
Yes I can understand the community cant support paid plugins, but I thought user with nickname "aimeos" and role "administrator" was Aimeos representative. If not, can you tell me what is the best way to contact Aimeos?

Thanks.
by michal.fehér
26 Aug 2018, 06:58
Forum: Help
Topic: Customer or customer group specific items
Replies: 10
Views: 5809

Re: Customer or customer group specific items

What do you mean contact Aimeos company? As far as I understand, it's an official extension - https://aimeos.com/extensions/.

Which company should we contact then?

Thanks
by michal.fehér
05 Aug 2018, 13:13
Forum: Laravel package
Topic: Artisan commands runs twice?
Replies: 8
Views: 3812

Re: Artisan commands runs twice?

Aha, indeed. dd() method makes it failed with error 256. if I just echo something and return true, then it runs just once. Thanks for clarification!
by michal.fehér
02 Aug 2018, 19:34
Forum: Laravel package
Topic: Artisan commands runs twice?
Replies: 8
Views: 3812

Re: Artisan commands runs twice?

Yes, there is only one record. Anyway, if it would be the case of 2 sites, it would also be printed that way, not? You can see from my screenshot: "Executing the Aimeos Job for default" dump in run dump in run If there are 2, I would expect something like "Executing the Aimeos Job for...
by michal.fehér
02 Aug 2018, 12:16
Forum: Laravel package
Topic: Artisan commands runs twice?
Replies: 8
Views: 3812

Re: Artisan commands runs twice?

It's printed twice:
Aimeos\Controller\Jobs\Order\Service\Delivery\Standard::run

and this happens in every job, services, product imports etc. I only have 1 default site. Any idea why is this happening?
by michal.fehér
02 Aug 2018, 12:03
Forum: Laravel package
Topic: Slow product detail with 400 variants
Replies: 12
Views: 5296

Re: Slow product detail with 400 variants

Perfect, thank you!
by michal.fehér
01 Aug 2018, 12:00
Forum: Laravel package
Topic: Product downloads section not working
Replies: 3
Views: 1833

Re: Product downloads section not working

OK, now I see it. not the best naming then though. One more question. why previews are only working with images? it's a broken image when I upload PDF or doc. <img class="media-image" src="http://damito.test/packages/aimeos/shop/mimeicons/application/vnd.openxmlformats-officedocument....
by michal.fehér
31 Jul 2018, 08:37
Forum: Laravel package
Topic: Product downloads section not working
Replies: 3
Views: 1833

Product downloads section not working

Hi. I think there is a bug in adding files to product. When I upload a file from admin, it gets stored to product_list as hidden attribute. In body-standard.php you call it this way $this->detailProductItem->getRefItems( 'media', null, 'download' ) which returns an empty array. And BTW, how can I re...