Search found 17 matches

by Pejka
12 Dec 2016, 13:05
Forum: Help
Topic: Display every product in basket separately
Replies: 1
Views: 1774

Display every product in basket separately

Hello! Is there any setting so that whenever someone adds a product to the basket that's already in the basket, or increases the amount of it, it doesn't increase the quantity but adds a different entry to the basket? In other words, I need a basket that doesn't aggregate the same products into a si...
by Pejka
02 Dec 2016, 10:35
Forum: Laravel package
Topic: Breadcrumbs bug
Replies: 4
Views: 2442

Re: Breadcrumbs bug

Yes, that's the goal. Multiple categories would be an issue, but in that case I guess you just pick one and move up the parent list up to level 0 (since categories can't have more than one parent as far as I can tell). Or maybe display multiple breadcrumbs, say, up to 3 if there are that many catego...
by Pejka
30 Nov 2016, 15:03
Forum: Laravel package
Topic: Breadcrumbs bug
Replies: 4
Views: 2442

Re: Breadcrumbs bug

Actually I left it out, if you open a product's detail page directly, the breadcrumbs area simply displays 'search results'.
So yeah, it is buggy, breadcrumbs should display the full path to the current page regardless of where or how you arrived to the page.
by Pejka
29 Nov 2016, 10:07
Forum: Laravel package
Topic: Breadcrumbs bug
Replies: 4
Views: 2442

Breadcrumbs bug

Hello! There seems to be a bug with the way breadcrumbs are handled, I'm using Laravel 5.1 but I think it's an unrelated aimeos issue. If I navigate to a product in a regular fashion, that is first selecting a category, then a product, it works fine. If I then go to a different category, and select ...
by Pejka
15 Nov 2016, 09:04
Forum: Help
Topic: Pubilc Rebate Price in Basket
Replies: 11
Views: 7087

Re: Pubilc Rebate Price in Basket

Well that's not very optimal.. I actually need the original rebate value when doing coupon calculations, since there will be product rebates, coupons, and discounts (for which I'm using coupons), and of all these, only one should be actually applied, the one which gives the greatest rebate, and the ...
by Pejka
14 Nov 2016, 16:24
Forum: Help
Topic: PayPal problems
Replies: 6
Views: 3867

Re: PayPal problems

Thanks, will try it out!
by Pejka
14 Nov 2016, 14:58
Forum: Help
Topic: Pubilc Rebate Price in Basket
Replies: 11
Views: 7087

Re: Pubilc Rebate Price in Basket

Took a little longer than expected to set up an alternate site for testing, and sadly, I don't see any changes :( dump($product->getPrice()->getRebate()); dump($product->getPrice()); still yields "0.00" Standard {#1031 ▼ -values: array:19 [▼ "price.id" => "1537" "p...
by Pejka
14 Nov 2016, 12:39
Forum: Help
Topic: Pubilc Rebate Price in Basket
Replies: 11
Views: 7087

Re: Pubilc Rebate Price in Basket

We tried monkeying around with those before, and came to the same conclusion, it should not happen that there are two properties under the same name. Renaming $values to $basevals creates an error so majestic it breaks somewhere along the lines of setting up basic site data: Exception in Standard.ph...
by Pejka
14 Nov 2016, 11:20
Forum: Help
Topic: Pubilc Rebate Price in Basket
Replies: 11
Views: 7087

Re: Pubilc Rebate Price in Basket

Yet it returns "0.00". Nevermind, I set the getRawValues function on the MShop\Common\Item\Base to public, it returns the correct values. As I see it nothing actually uses that function so it should be okay.
by Pejka
14 Nov 2016, 09:33
Forum: Help
Topic: Pubilc Rebate Price in Basket
Replies: 11
Views: 7087

Re: Pubilc Rebate Price in Basket

The problem is not even really with the rebate value being protected, the problem is that a Price object holds 2 "values", which are different properties that actually share the same name, and there is a discrepancy between their values. Some digging revealed this to be the result of them ...