Search found 140 matches

by cnoelker
15 Jul 2020, 13:02
Forum: TYPO3 extension
Topic: mshop_order_base_product_attr
Replies: 5
Views: 1910

Re: mshop_order_base_product_attr

Which type has more than one value? I am currently seeing only custom and variant attributes in that table.
by cnoelker
15 Jul 2020, 12:43
Forum: TYPO3 extension
Topic: mshop_order_base_product_attr
Replies: 5
Views: 1910

Re: mshop_order_base_product_attr

Ah, then it makes sense. I always have one value inside it, only.

Thanks!
Claudia
by cnoelker
15 Jul 2020, 12:06
Forum: TYPO3 extension
Topic: mshop_order_base_product_attr
Replies: 5
Views: 1910

mshop_order_base_product_attr

Hi,
no problem with it, but I am curious:
Is there some reason why all values in the column 'value' of the table mshop_order_base_product_attr are surrounded by quotes?
E.g. the column contains:
"1234"
"size_xs"

Claudia
by cnoelker
13 Jul 2020, 07:31
Forum: Help
Topic: Cart items for logged in user
Replies: 9
Views: 20783

Re: Cart items for logged in user

My main use case is that a logged in user can prepare a cart, then log out and come back later for the checkout process. We have created a B2B shop and a cart often consist of more than 100 articles. It's a really bad user experience if the cart is gone... Any additional actions (e.g. deleting aband...
by cnoelker
10 Jul 2020, 07:48
Forum: Help
Topic: Cart items for logged in user
Replies: 9
Views: 20783

Re: Cart items for logged in user

I would love this feature, too.
by cnoelker
03 Jul 2020, 11:31
Forum: TYPO3 extension
Topic: Add articles to cart by GET request
Replies: 3
Views: 1583

Re: Add articles to cart by GET request

After giving this a bit more thought, I was able to solve my problem. You have to provide the parameters like e.g. this:

Code: Select all

$params = array(
'b_action' => 'add', 
'b_prodid' => 1189,
'b_attrvarid' => array('size' => 1032, 'color' => 134)
);
by cnoelker
01 Jul 2020, 06:58
Forum: TYPO3 extension
Topic: Add articles to cart by GET request
Replies: 3
Views: 1583

Re: Add articles to cart by GET request

Yes, that's exactly what I want to do: Add a product to the basket.
by cnoelker
30 Jun 2020, 11:30
Forum: TYPO3 extension
Topic: Add articles to cart by GET request
Replies: 3
Views: 1583

Add articles to cart by GET request

Hello, when an article is already in the cart, then I can e.g. update the quantity or deleting the article by starting a GET request. When I check in the reference: https://aimeos.org/docs/Developers/Html_frontend/Used_parameter_names#Basket it should be possible to provide b_attrvarid as a paramete...
by cnoelker
26 Jun 2020, 12:35
Forum: TYPO3 extension
Topic: Remove items from cart if quantity is zero
Replies: 1
Views: 1325

Remove items from cart if quantity is zero

Hello, is there a way to configure aimeos so that the user may enter zero (0) as a quantity? Then, the action should be the same as if the user clicked on the Minus button, i.e. delete the item from the cart. Currently, this results in an error message that no price could be determined for quantity ...
by cnoelker
13 Jun 2020, 12:18
Forum: TYPO3 extension
Topic: Wrong partial included
Replies: 3
Views: 1558

Re: Wrong partial included

Thank you, that makes perfect sense.
I didn't yet let the second extension depend on the first one.