Search found 26 matches

by Bananamoon
20 Aug 2015, 11:15
Forum: Help
Topic: Edit account details
Replies: 3
Views: 3926

Re: Edit account details

I was wondering if Aimeos has an implementation for the user to edit his/her account details? So, if a customer logs in and wants to change their address, for example. All address details can be changed in the address part of the checkout process and the changes will be stored permanently. Users do...
by Bananamoon
20 Aug 2015, 07:55
Forum: Help
Topic: Edit account details
Replies: 3
Views: 3926

Edit account details

Hi!

I was wondering if Aimeos has an implementation for the user to edit his/her account details?
So, if a customer logs in and wants to change their address, for example.
I also noticed that on the demo website, the login doesn't work, not sure if this is on purpose :)

Thanks! :D
by Bananamoon
19 Aug 2015, 14:26
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16537

Re: Creating a subcomponent

Thanks for the info! Altho I'm still not sure how to implement the template. I copied the Client/Html/Catalog/Stage/Breadcrumb/Default.php to ext/ai-project/client/html/src/Client/Html/Catalog/Mystage/Default.php I extended like this: class Client_Html_Catalog_Optistage_Default extends Client_Html_...
by Bananamoon
19 Aug 2015, 14:11
Forum: Laravel package
Topic: Modify the basket/mini layout
Replies: 4
Views: 5387

Re: Modify the basket/mini layout

Soooo, I think I figured all out how the views and components and all work, I managed to modify all I wanted except for the mini basket. I don't know what's wrong but it seems to be some caching? I disabled the caching for the basket itself in the shop config file after reading https://aimeos.org/d...
by Bananamoon
19 Aug 2015, 11:05
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16537

Re: Creating a subcomponent

I'm trying to overwrite the default breadcrumb, but am not sure how to do this. I know how to create a new component, and was just wondering if this goes the same way for a subcomponent? So from a default subcomponent it becomes a component that you have to add in the shop config file in order to s...
by Bananamoon
19 Aug 2015, 09:57
Forum: Help
Topic: Creating a subcomponent
Replies: 29
Views: 16537

Creating a subcomponent

Hi! :-) (sorry for spamming this forum!) I'm trying to overwrite the default breadcrumb, but am not sure how to do this. I know how to create a new component, and was just wondering if this goes the same way for a subcomponent? So from a default subcomponent it becomes a component that you have to a...
by Bananamoon
17 Aug 2015, 21:49
Forum: Laravel package
Topic: Modify the basket/mini layout
Replies: 4
Views: 5387

Modify the basket/mini layout

Hi! Thought I'd post it in another topic, so if people bump into the same problem they might end up here :) Soooo, I think I figured all out how the views and components and all work, I managed to modify all I wanted except for the mini basket. I don't know what's wrong but it seems to be some cachi...
by Bananamoon
17 Aug 2015, 20:06
Forum: Laravel package
Topic: Extending Aimeos Controller
Replies: 10
Views: 10650

Re: Extending Aimeos Controller

Nice, thanks! Really appreciate the work you guys put in this shop! ;) Thank you very much but don't forget the girls! ;-) The documentation for creating the factory class is now available too: https://aimeos.org/docs/Developers/Html_frontend/Implement_new_components#Factory_class If you finished y...
by Bananamoon
17 Aug 2015, 12:02
Forum: Laravel package
Topic: Extending Aimeos Controller
Replies: 10
Views: 10650

Re: Extending Aimeos Controller

About the views itself, I will have to rewrite components for the homepage too. I found in the shop config file the pages, where you can add and remove components. Can I create my own component/page to go with the homepage? I tried earlier to create a component (catalog/overview), but failed to suc...
by Bananamoon
17 Aug 2015, 10:47
Forum: Laravel package
Topic: Extending Aimeos Controller
Replies: 10
Views: 10650

Re: Extending Aimeos Controller

Just to make sure I understand it all, in the code you wrote above, I am redefining my '/list' route, right? So for the overview page I can just use the default /list for these kind of urls: list?f_name=cat-1&f_catid=4451? Not exactly a redefinition but you create a new route (myproject_homepag...