Search found 11 matches

by malik_kat
06 May 2024, 08:16
Forum: Help
Topic: upload image by api laravel controller
Replies: 1
Views: 682

upload image by api laravel controller

I am working on adding media item to table mshop_media. I created my controller on this path. app\Http\Controllers\AddProductController.php And added this code $context = app('aimeos.context')->get(); $managerMedia = \Aimeos\MShop::create( $context, 'media' ); $cntlMedia = \Aimeos\Controller\Common\...
by malik_kat
02 May 2024, 11:49
Forum: Help
Topic: How i can add text item to product
Replies: 2
Views: 1220

Re: How i can add text item to product

My problem is solved I found my error. When i used this code, inserted the text item data is stored correctly. $managerText = \Aimeos\MShop::create( $context, 'text' ); $textItem = $managerText->create(); $textItem->setDomain('product'); $textItem->setLabel('text-item-meta'); $textItem->setStatus(1)...
by malik_kat
01 May 2024, 11:36
Forum: Help
Topic: How i can add text item to product
Replies: 2
Views: 1220

How i can add text item to product

I am working to build cron job to add text item type meta-description to each product do not have meta-description. firstly i tried to add text item like this: $context = app('aimeos.context')->get(); $managerText = \Aimeos\MShop::create( $context, 'text' ); $textData = [ "text.languageid"...
by malik_kat
25 Apr 2024, 13:25
Forum: Help
Topic: Create product with relationship not work correctly (via jsonadm)
Replies: 1
Views: 3998

Create product with relationship not work correctly (via jsonadm)

Hi, I am working on added product with domians like text,media,catlog,price,stock by jsonadm. firstly i added the domains in database by jsonadm 1-Text Domian: Send POST request to this resource http://127.0.0.1:8000/api/admin/default/jsonadm/text?_token=EK3LXeI0KN1ApZXHrNRu19WGyEJ75DUsXWOgbfjL And ...
by malik_kat
19 Mar 2024, 10:56
Forum: Help
Topic: save order data on another samll project
Replies: 1
Views: 18122

save order data on another samll project

Hello, I want to build a small project using PHP for order management on it. for example when the client makes a successful order I want to save this order data on another small project. how I do that on aimeos shop.? Can you please provide some hint to do this? PHP Version 8.2.12 Laravel version: 1...
by malik_kat
01 Mar 2024, 13:00
Forum: Laravel package
Topic: Share basket to other via whatsapp
Replies: 2
Views: 28266

Re: Share basket to other via whatsapp

How to get the order basket id for current basket to unregistered user ?
We get the order basket id for register user using the customerid but unregister user the customerid is null
by malik_kat
08 Feb 2024, 14:02
Forum: Help
Topic: Modify add to basket behavior
Replies: 5
Views: 10310

Re: Modify add to basket behavior

Thanks for this replies @aimeos

It worked.
by malik_kat
07 Feb 2024, 10:14
Forum: Help
Topic: Modify add to basket behavior
Replies: 5
Views: 10310

Re: Modify add to basket behavior

I dont need pass the customer directly to the basket when click on button add to basket .
I need him to continue shopping and when he finished the shopping press on basket button to checkout and payment.
by malik_kat
06 Feb 2024, 14:52
Forum: Help
Topic: Modify add to basket behavior
Replies: 5
Views: 10310

Modify add to basket behavior

Hello, PHP Version 8.2.12 Laravel version: 10 Aimeos version: 2023.10 Environment: windows (XAMPP cross-platform web server). How i can change a behavior to procedure add product to basket . I want when user click on button "add to basket". The product will be add to basket without show c...
by malik_kat
06 Feb 2024, 14:42
Forum: Help
Topic: create new component
Replies: 3
Views: 6660

Re: create new component

Thanks for this replies @aimeos @Gagik

I have try as per your instructions and it worked.