Search found 16 matches

by niloofar
17 Nov 2021, 08:33
Forum: Help
Topic: Show cheapest variant price as selection product's price
Replies: 7
Views: 8260

Re: Show cheapest variant price as selection product's price

Stock items are not added to list items by adding `stock` to this array. Interesting is, that by deleting `media` from this array the media items won't be fetched. I even tested this with a fresh installation of the Aimeos project.

Are there any other files that I should check?
by niloofar
10 Nov 2021, 13:15
Forum: Help
Topic: Show cheapest variant price as selection product's price
Replies: 7
Views: 8260

Re: Show cheapest variant price as selection product's price

That's right.
I want to know how to change the Value of config so that all promoted products are retrieved with their stock, price, and subproducts items.

maybe something like:
['media', 'media/property', 'price', 'text', 'product' => ['promotion' => ['stock', 'product', ...]]

Right now the ...
by niloofar
09 Nov 2021, 14:29
Forum: Help
Topic: Show cheapest variant price as selection product's price
Replies: 7
Views: 8260

Re: Show cheapest variant price as selection product's price

Hi

The solution mentioned here works fine for me.
However, I have an issue in getting price items on the home page.

Is there a way to change the domains here somehow, so that promoted products are returned with their referenced subProducts? And subProducts
must have their prices with them as ...
by niloofar
23 Oct 2021, 08:22
Forum: Help
Topic: Customize checkout urls
Replies: 1
Views: 3829

Customize checkout urls

Hi.

I have changed checkout steps in the config like below:

'html' => [
'checkout' => [
'subparts' => ['shipping', 'checkout', 'process']
]
]


I've created the necessary classes and everything works fine.

However, the URLs for each step are like this:

/shop/default/checkout for shipping ...
by niloofar
11 Sep 2021, 11:51
Forum: Help
Topic: Show cheapest variant price as selection product's price
Replies: 7
Views: 8260

Show cheapest variant price as selection product's price

Hi.

I would like to change the logic behind the price shown for a select product.

On this page , the price of the Demo selection article must get changed.
The price must be the cheapest price, among all the variant products. For instance, by opening the product's page you can see there are two sub ...
by niloofar
23 Aug 2021, 12:58
Forum: Help
Topic: Change url sanitize behavior
Replies: 11
Views: 15666

Re: Change url sanitize behavior

Thanks a lot.
by niloofar
23 Aug 2021, 12:47
Forum: Help
Topic: Change url sanitize behavior
Replies: 11
Views: 15666

Re: Change url sanitize behavior

Thanks for the merge.

When do you we'll get this change with composer update?
by niloofar
23 Aug 2021, 07:48
Forum: Help
Topic: Change url sanitize behavior
Replies: 11
Views: 15666

Re: Change url sanitize behavior

Suppose in the admin panel the URL segment is set to a phrase with whitespaces, for example: 'black dress'.
The phrase saved to the database is exactly 'black dress' because
\Aimeos\MW\Str::slug() is only called when there's no value in the URL segment input.

Then, on the client-side, the URL ...
by niloofar
22 Aug 2021, 12:37
Forum: Help
Topic: Change url sanitize behavior
Replies: 11
Views: 15666

Re: Change url sanitize behavior

I was thinking, we don't want the admin to become confused.
So why not save the sanitized URL part in the first place?

Is adding

if (isset($data['product.url']) && $data['product.url'] != '') {
$data['product.url'] = \Aimeos\MW\Str::slug( $data['product.url'] );
}


in admin/jqadm/src/Admin ...
by niloofar
22 Aug 2021, 12:00
Forum: Help
Topic: Change url sanitize behavior
Replies: 11
Views: 15666

Re: Change url sanitize behavior

Thanks a million. :)