Search found 44 matches

by lucadambros
24 Sep 2019, 07:10
Forum: Laravel package
Topic: Full ckeditor
Replies: 4
Views: 1840

Re: Full ckeditor

Thank you very much! I didin't know that was so easy to do that!
by lucadambros
24 Sep 2019, 06:26
Forum: Laravel package
Topic: Full ckeditor
Replies: 4
Views: 1840

Re: Full ckeditor

I tried to override that function but plugins like forms won't be enable until I use the full version of ckeditor.

In the official site (https://ckeditor.com/ckeditor-4/download/) there is a different source link for the full package
by lucadambros
23 Sep 2019, 12:07
Forum: Laravel package
Topic: Full ckeditor
Replies: 4
Views: 1840

Full ckeditor

Hi,
I need the full version of CKEditor in the admin section.

In the file
/vendor/aimeos/aimeos-laravel/src/views/jqadm/index.blade.php

there is the standard version.

How can I overwrite that?
Is there another way?
by lucadambros
12 Sep 2019, 11:44
Forum: Laravel package
Topic: Email after checkout isn't sent
Replies: 1
Views: 1034

Re: Email after checkout isn't sent

You have to setup the cronjobs

https://aimeos.org/docs/Laravel/Configure_cronjobs

Edit:
Here you can find more: post9370.html
by lucadambros
11 Sep 2019, 15:29
Forum: Laravel package
Topic: How to extend front-end ?
Replies: 4
Views: 1841

Re: How to extend front-end ?

Guide: https://aimeos.org/docs/Developers/Html_frontend/Extend_existing_components Here you can have everything you need to extend existing components. The guide is very clear about this. Here you can find all the methods you want: https://aimeos.org/api/latest/ Inside this forum you can also find a...
by lucadambros
28 Aug 2019, 10:07
Forum: Laravel package
Topic: Add price after pressing "add to basket" button
Replies: 20
Views: 7295

Re: Add price after pressing "add to basket" button

aimeos wrote: 27 Aug 2019, 14:35 Alternatively, if all your products can be bought, you can remove the Category frontend basket decorator:
https://aimeos.org/docs/Configuration/C ... tors/local
That worked!

Thank you very much for your help!
by lucadambros
27 Aug 2019, 10:09
Forum: Laravel package
Topic: Add price after pressing "add to basket" button
Replies: 20
Views: 7295

Re: Add price after pressing "add to basket" button

i also wrote this: $clone_item->addListItem( 'catalog', $listItem, $catalogManager->getItem(1)); but I got basket empty Seems like the file ext/ai-client-html/client/html/src/Client/Html/Basket/Standard/Standard.php is not getting the product in the line // the list has the right ID $products = $pro...
by lucadambros
27 Aug 2019, 08:07
Forum: Laravel package
Topic: Add price after pressing "add to basket" button
Replies: 20
Views: 7295

Re: Add price after pressing "add to basket" button

How can I assign it?

(it must be the same as the original)
by lucadambros
27 Aug 2019, 07:20
Forum: Laravel package
Topic: Add price after pressing "add to basket" button
Replies: 20
Views: 7295

Re: Add price after pressing "add to basket" button

Hi, I created the decorator. I tried to clone the product and sending the new ID to the AddProduct function. The product is in the db correctly but I am getting an error. I wrote this code: $priceManager = \Aimeos\MShop::create( $context, 'price' ); $productManager = \Aimeos\MShop::create( $context,...