Search found 7 matches

by archanaep
08 Jan 2024, 10:31
Forum: Laravel package
Topic: Aimeos default theme change using extension
Replies: 3
Views: 4973

Re: Aimeos default theme change using extension

Thankyou for your response. Can I create a custom.css file for client html(without theme extension)?If yes how to link like aimeos.css? Overrides some style in aimeos.css file in default folder but not reflected. How to publish the CSS/js folder from extension to public?
by archanaep
28 Dec 2023, 09:43
Forum: Laravel package
Topic: Aimeos default theme change using extension
Replies: 3
Views: 4973

Aimeos default theme change using extension

Hi, I have doubt again in Aimeos extension( Using latest version of aimeos). Now my need is to change the look and feel of site. At the same time ,the extra field also added to admin section. 1)Do both need separate extension? If theme and functionality change need two extensions, what should be not...
by archanaep
01 Nov 2023, 09:47
Forum: Laravel package
Topic: To Add a new field to order ,below the invoice number
Replies: 8
Views: 25992

Re: To Add a new field to order ,below the invoice number

Thank you for your valuable reply. I modified the code in the template and decorator files, and the data now saves and updates successfully.
by archanaep
27 Oct 2023, 10:27
Forum: Laravel package
Topic: To Add a new field to order ,below the invoice number
Replies: 8
Views: 25992

Re: To Add a new field to order ,below the invoice number

hi, Added a field to mshop_order table in packages\myext-ext\setup\default\schema 'table' => array( 'mshop_order' => function ( \Aimeos\Upscheme\Schema\Table $table ) { $table->engine = 'InnoDB'; //$table->addColumn( 'priority', 'string', array( 'length' => 64 ) ); $table->string( 'priority' ); retu...
by archanaep
23 Oct 2023, 06:00
Forum: Laravel package
Topic: To Add a new field to order ,below the invoice number
Replies: 8
Views: 25992

Re: To Add a new field to order ,below the invoice number

The value of "priority" is automatically saved because it gets added to the item here: https://github.com/aimeos/ai-admin-jqad ... d.php#L468 1)Don't know what I missed? I have added new field as per your instruction. Is the decorator created under the service anymore? Or is it enough to c...
by archanaep
14 Oct 2023, 09:25
Forum: Laravel package
Topic: To Add a new field to order ,below the invoice number
Replies: 8
Views: 25992

Re: To Add a new field to order ,below the invoice number

Hi, Thank you for your reply. I followed your instructions and added a new field to the mshop_order table. I also created and extended the manager and item files, and added code to the template folder. However, I am having trouble displaying, updating, and saving data in the new field. I am also hav...
by archanaep
10 Oct 2023, 06:31
Forum: Laravel package
Topic: To Add a new field to order ,below the invoice number
Replies: 8
Views: 25992

To Add a new field to order ,below the invoice number

I'm new to Aimeos, and I'm using Aimeos 2023.07 with Laravel 9 and PHP 8. Could you please provide guidance on how to add a new field named 'priority' below the invoice number on the order details page within Aimeos' admin interface? Thank you in advance.