Search found 274 matches

by MikaelNazarenko
03 Nov 2021, 21:57
Forum: Laravel package
Topic: Product media depends on selected attribute
Replies: 3
Views: 1025

Product media depends on selected attribute

Hello, Aimeos ! I have attribute "color", I have attached some colors to product as configurable options. So on FE product detail page I can select specific color. But when I select specific color I would like to show specific media related to selected color and hide other.. Is there some ...
by MikaelNazarenko
28 Oct 2021, 09:29
Forum: Laravel package
Topic: Upgrade question
Replies: 1
Views: 593

Upgrade question

Hello community)

My current version is aimeos/aimeos-laravel 2021.04.4

How can I upgrade to 2021.10 ? And will it break something because I have custom extension ?
by MikaelNazarenko
15 Sep 2021, 23:28
Forum: Laravel package
Topic: Price depending on weight ?
Replies: 5
Views: 4157

Re: Price depending on weight ?

Thank you! This is almost clear for me now. Only one moment. Now I use weight and price like this: I have created attribute type 'weight', then I created some attribute '1kg' of attribute type 'weight', then I assign some price for created attribute '1kg', and then this '1kg' I add to variant produc...
by MikaelNazarenko
15 Sep 2021, 09:44
Forum: Laravel package
Topic: Price depending on weight ?
Replies: 5
Views: 4157

Re: Price depending on weight ?

Hi, Aimeos) I try to achieve my goal to create product where is possible to select different weight with different price.. I have created product with type selection. Also I have added 1 variant to variants.. This is a part from my config: 'catalog' => [ 'domains' => [ 'media', 'media/property', 'pr...
by MikaelNazarenko
29 Jun 2021, 12:09
Forum: Laravel package
Topic: Price depending on weight ?
Replies: 5
Views: 4157

Price depending on weight ?

Is it possible to make product with different weights and price depends on which weight customer selected ? Clarify me please, is this what I need https://aimeos.org/help/post13426.html?hilit=price#p13426 ? But I can't understand how does it work (( I don't understand how do I connect selection and ...
by MikaelNazarenko
29 Jun 2021, 06:01
Forum: Laravel package
Topic: Add 1:1 relation to product
Replies: 3
Views: 3064

Re: Add 1:1 relation to product

Great! And will not be the problem to filter or search products on frontend by attributes ?
by MikaelNazarenko
29 Jun 2021, 06:00
Forum: Laravel package
Topic: Add supplier drop down option to Aimeos Admin?
Replies: 9
Views: 5728

Re: Add supplier drop down option to Aimeos Admin?

Great! Thank you so much for the quick help ! So seems I need to update aimeos/aimeos-core ? What the current version ?
by MikaelNazarenko
29 Jun 2021, 05:34
Forum: Laravel package
Topic: Add 1:1 relation to product
Replies: 3
Views: 3064

Add 1:1 relation to product

I need to add several relations 1:1 to product. Field must be selectable. The list of options must be possible to populate from admin panel. What could you suggest in this case ? To understand better this is animal food shop. The all fields are selectable and have only 1 possible option, could look ...
by MikaelNazarenko
29 Jun 2021, 05:21
Forum: Laravel package
Topic: Add supplier drop down option to Aimeos Admin?
Replies: 9
Views: 5728

Re: Add supplier drop down option to Aimeos Admin?

Hi community! For me this is also actual problem now. I would like to add possibility in admin to set supplier inside product.. Was something changed now regarding to this problem ? My components are pretty fresh I think: aimeos/ai-admin-jqadm 2021.04.6 Aimeos Vue.js+Bootstrap admin interface aimeos...
by MikaelNazarenko
25 May 2021, 12:57
Forum: Laravel package
Topic: How to use DB in unit tests ?
Replies: 2
Views: 1836

How to use DB in unit tests ?

Hi) I need to cover complicated job with unit test. Here is my blank Test class: <?php namespace Aimeos\Controller\Jobs; class OrderCommissionTest extends \PHPUnit\Framework\TestCase { private $object; protected function setUp() { } public function testRun() { $this->assertTrue(true); } } There must...