Search found 8 matches

by ИванМаксимов
15 Sep 2023, 12:07
Forum: Laravel package
Topic: Multi-domains, custom theme and CSP
Replies: 4
Views: 19454

Re: Multi-domains, custom theme and CSP

Yes, it is work!
I think you need include this into your documentation ...
by ИванМаксимов
15 Sep 2023, 10:29
Forum: Laravel package
Topic: Multi-domains, custom theme and CSP
Replies: 4
Views: 19454

Re: Multi-domains, custom theme and CSP

I found where generates url to css files: vendor/aimeos/aimeos-base/src/View/Helper/Content/Standard.php:68 \Aimeos\Base\View\Helper\Content\Standard::baseurl Here code: { if( !isset( $this->baseurls[$fsname] ) ) { $this->baseurls[$fsname] = rtrim( $this->view()->config( 'resource/' . $fsname . '/ba...
by ИванМаксимов
15 Sep 2023, 10:18
Forum: Laravel package
Topic: Multi-domains, custom theme and CSP
Replies: 4
Views: 19454

Multi-domains, custom theme and CSP

Hello! ENV: - laravel-aimeos 2023.07.01 - custom domains configuration - installed one custom theme (named 't1') - have 2 domains: shop.local and aimeos.local - APP_URL=http://shop.local - APP_DEBUG=false - domain aimeos.local have default theme - domain shop.local have t1 theme Trouble: On the site...
by ИванМаксимов
07 Sep 2023, 09:35
Forum: Laravel package
Topic: How to filter product text by API (jsonadm and graphql) request
Replies: 8
Views: 12633

Re: How to filter product text by API (jsonadm and graphql) request

Thank you so much! mutation { saveProduct(input: { id: "123", code: "test" label: "Test product" lists: { text: [{ type: "default", type: "default" <--- is it a list entry type? where can I find out what types are available and what they are for?
by ИванМаксимов
06 Sep 2023, 18:46
Forum: Laravel package
Topic: How to filter product text by API (jsonadm and graphql) request
Replies: 8
Views: 12633

Re: How to filter product text by API (jsonadm and graphql) request

And the next question: how to update the content of one text for a product?
Pease, give example request of update one text of existing product
by ИванМаксимов
06 Sep 2023, 18:42
Forum: Laravel package
Topic: How to filter product text by API (jsonadm and graphql) request
Replies: 8
Views: 12633

Re: How to filter product text by API (jsonadm and graphql) request

aimeos wrote: 06 Sep 2023, 18:18 You can't. The GraphQL API is for administration purpose only and you can't limit the texts of the product by any property because you need to pass all texts when you save them again. Texts with are not sent in the request are deleted.
Ok. What about jsonadm ? By jsonadm API it's possible?
by ИванМаксимов
06 Sep 2023, 18:02
Forum: Laravel package
Topic: How to filter product text by API (jsonadm and graphql) request
Replies: 8
Views: 12633

Re: How to filter product text by API (jsonadm and graphql) request

This worked, but i ask about "english" text!
How to filter by languadeid field value?
by ИванМаксимов
06 Sep 2023, 17:36
Forum: Laravel package
Topic: How to filter product text by API (jsonadm and graphql) request
Replies: 8
Views: 12633

How to filter product text by API (jsonadm and graphql) request

Please, help me write API request to get long english text for a given product. For graphql or jsonadm API. I try graphql request (on default demo data): "query":"query { getProduct(id:\"15\", include: [\"product/text\"]){ id,type,label,lists{text(listtype: \"...