Search found 7865 matches

by aimeos
18 Apr 2024, 11:29
Forum: Laravel package
Topic: Overriding Status Names
Replies: 2
Views: 796

Re: Overriding Status Names

The translation domain is "mshop/code":

Code: Select all

'i18n' => [
    'en' => [
        'mshop/code' => [
            'status:1' => ['Active'],
        ],
    ],
],
See also: https://aimeos.org/docs/latest/laravel/ ... anslations
by aimeos
17 Apr 2024, 09:58
Forum: Laravel package
Topic: Page path remove prefix "P"
Replies: 1
Views: 1351

Re: Page path remove prefix "P"

That's a bit more complicated because then, the Laravel auth routes interfere most of the times and things aren't working correctly any more. The 2024.x version of the Aimeos distribution is prepared for multi-routing which configures everything out of the box if you enable the feature: See here for...
by aimeos
17 Apr 2024, 08:20
Forum: TYPO3 extension
Topic: Template: You are here: Back
Replies: 5
Views: 8281

Re: Template: You are here: Back

Not necessarily, it could be also a general problem.
by aimeos
17 Apr 2024, 08:17
Forum: Laravel package
Topic: Changing title in jqadm to be dynamic
Replies: 2
Views: 1208

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: 2
Views: 1215

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: 4
Views: 2003

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: 2507

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: 16
Views: 64666

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: 2507

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: 2374

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...