Search found 7872 matches

by aimeos
17 Apr 2024, 08:17
Forum: Laravel package
Topic: Changing title in jqadm to be dynamic
Replies: 2
Views: 2049

Re: Changing title in jqadm to be dynamic

Try this code:

Code: Select all

app( 'aimeos.context' )->get( false )->locale()?->getSiteItem()?->getLabel() ?: 'Aimeos admin interface'
by aimeos
17 Apr 2024, 08:06
Forum: Laravel package
Topic: Custom Links in Subparts
Replies: 3
Views: 2145

Re: Custom Links in Subparts

Use the correct resource parameter and the ID of the subpart as URL fragement:

Code: Select all

$enc->attr( $this->link( 'admin/jqadm/url/get', ['resource' => 'season', 'id' => $itemId] + $params, [], ['subpart-html-node-id'] ) )
See: https://aimeos.org/docs/latest/infrastr ... view/#link
by aimeos
17 Apr 2024, 08:01
Forum: Laravel package
Topic: Custom.css changes arent working
Replies: 6
Views: 3530

Re: Custom.css changes arent working

Did you add your extension to the ./packages/ directory and installed it via composer?
https://aimeos.org/docs/latest/developer/extensions/
by aimeos
17 Apr 2024, 07:59
Forum: Laravel package
Topic: Issues with creating Subparts
Replies: 3
Views: 3556

Re: Issues with creating Subparts

Where the "vue" class needs to be is a tad confusing. I now have it working without the vue class included anywhere in the subpart code. It is in the parent code, so I'm not sure I follow when / where that should get included. The "vue" CSS class creates an own instance of a Vue...
by aimeos
17 Apr 2024, 07:26
Forum: TYPO3 extension
Topic: Lost session at confirmation page (lost orderid)
Replies: 17
Views: 66997

Re: Lost session at confirmation page (lost orderid)

Our main question at the moment is if the order ID is still there here in the init() method: https://github.com/aimeos/ai-client-html/blob/master/src/Client/Html/Checkout/Confirm/Standard.php#L73 The data() method is called after the init() method and there the order ID is sometimes lost: https://gi...
by aimeos
15 Apr 2024, 15:41
Forum: Laravel package
Topic: Issues with creating Subparts
Replies: 3
Views: 3556

Re: Issues with creating Subparts

[*]In the template code snippet example for the subpart, it is missing the "vue" class in the div The vue CSS class is already in the example template ( "<div class="col-xl-6 vue"): https://aimeos.org/docs/latest/admin/jqadm/create-subparts/#template Or did you mean somewhe...
by aimeos
15 Apr 2024, 07:12
Forum: Laravel package
Topic: I don't understand the new product attributes layout
Replies: 1
Views: 3004

Re: I don't understand the new product attributes layout

It's still the same as before but the "custom" and "configurable" parts from the former "Options" panel have been merged into the "Characteristics" panel. Now, all attribute types are available there. If you add a new product list type for attributes, they wil...
by aimeos
12 Apr 2024, 18:43
Forum: TYPO3 extension
Topic: add variant to selection product: js error
Replies: 2
Views: 4180

Re: add variant to selection product: js error

You have overwritten the template of the product section subpart in an earlier versions (before 2023.x) and upgraded to 2023.x without adapting the template to the new JS code for that panel.

The changes are partly described here: https://aimeos.org/docs/latest/changelog/2023.x/
by aimeos
12 Apr 2024, 17:51
Forum: Laravel package
Topic: Aimeos Multi Vendor and Laravel 9 with Vue 2 Frontend
Replies: 1
Views: 3228

Re: Aimeos Multi Vendor and Laravel 9 with Vue 2 Frontend

I installed LTS release: 2023.10 (Laravel 9.x, 10.x and 11.x) to work with Laravel 9 as we still use it with Vue 2 and Laravel Mix. It installed just fine. I saw many files were added to public/vendor . Is that normal? Seems to be and it is done with But it is not clear why we would want to add fol...
by aimeos
11 Apr 2024, 13:21
Forum: Laravel package
Topic: What is the difference between all the tables where user data used?
Replies: 3
Views: 6844

Re: What is the difference between all the tables where user data used?

Unfortunately, that's not so easy. Otherwise, we would have done that already.