Search found 7870 matches

by aimeos
19 Apr 2024, 12:44
Forum: Laravel package
Topic: Custom Links in Subparts
Replies: 3
Views: 1814

Re: Custom Links in Subparts

Like said, the subpart can be linked to be adding its ID as URL fragment, e.g.:

Code: Select all

<div id="league">...</div>

http://localhost:8000/admin/jqadm/season/get/1#league
by aimeos
19 Apr 2024, 12:42
Forum: Laravel package
Topic: Custom.css changes arent working
Replies: 6
Views: 2999

Re: Custom.css changes arent working

Which Aimeos version do you use?
by aimeos
19 Apr 2024, 12:41
Forum: Laravel package
Topic: Currency Session
Replies: 2
Views: 684

Re: Currency Session

No, it's not possible to store the locale and currency in the session and remove them from the URL. This would cause massive caching problems where pages with wrong languages/currencies would be served because the URL isn't unique any more.
by aimeos
19 Apr 2024, 12:39
Forum: Laravel package
Topic: Product import takes too long
Replies: 2
Views: 802

Re: Product import takes too long

Which importer do you use? CSV, XML or an own implementation?
by aimeos
19 Apr 2024, 12:38
Forum: TYPO3 extension
Topic: Show wishlist as catalog list
Replies: 1
Views: 832

Re: Show wishlist as catalog list

No, account/favorite is an own component independent of the catalog/lists component.
By default, it only support pagination and is ordered by newest items first. If you want to enable filtering, you have to extend the component.
by aimeos
18 Apr 2024, 11:29
Forum: Laravel package
Topic: Overriding Status Names
Replies: 2
Views: 1366

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

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

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

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

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