Search found 108 matches

by mohal_04
17 Apr 2018, 07:00
Forum: Laravel package
Topic: Admin Dashboard - Add a custom tab in locale menu
Replies: 7
Views: 4073

Admin Dashboard - Add a custom tab in locale menu

Laravel: 5.6
Aimeos: 2018.04
PHP: 7.x

Hello everyone,

Can anyone guide me how to add new page under Locale Settings? See attached screen-shot:
New Locale Page
New Locale Page
new_locale_section.jpg (49.16 KiB) Viewed 4073 times
Thanks!
by mohal_04
13 Apr 2018, 06:35
Forum: Laravel package
Topic: Laravel - Extend Vue.js in Custom Extension
Replies: 3
Views: 8789

Laravel - Extend Vue.js in Custom Extension

Hello again, So, I was making few changes in Stock Section of Product Edit form. So, I have added another field for stock. 207.jpg And want to sum up both stocks using JavaScript. So, I added some code in Vue.js file, i.e. product.js file inside themes directory. Here is the complete path: ./ext/ai-...
by mohal_04
13 Apr 2018, 04:56
Forum: TYPO3 extension
Topic: Extend Stock (Solved)
Replies: 21
Views: 53459

Re: Extend Stock (Solved)

You should (!) only add the configuration and code you overwrite and remove the things that are the same as in the core. Especially in the configuration file (SQL statements that are the same as in the core file) and in the admin client (which should contain only the overwritten method and nothing ...
by mohal_04
12 Apr 2018, 11:38
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33644

Re: How to add additional fields to a customer

aimeos wrote:Because it uses fromArray() of the item without any special handling. We will try to use that in the subpanel classes too if possible in the next version.
OK thanks for all the help!!! :) :) :) :) :)
by mohal_04
12 Apr 2018, 09:38
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33644

Re: How to add additional fields to a customer

No, it's the same as for the managers: You have to extend from the standard class and create e.g. ./ext/myextendsion/admin/jqadm/src/Admin/JQAdm/Product/Price/Mystandard.php which contains: class MyStandard extends Standard { protected function fromArray( \Aimeos\MShop\Product\Item\Iface $item, arr...
by mohal_04
12 Apr 2018, 09:35
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33644

Re: How to add additional fields to a customer

C'mon mohal, No not here "./ext/ai-admin-jqadm/admin/jqadm/src/Admin/JQAdm/Product/Price/Standard.php" See Extend Stock for a full working example ==> https://aimeos.org/help/post6012.html#p6012 This should solve your problem. I done the same but with Stock Class instead of Price. Hi, Tha...
by mohal_04
12 Apr 2018, 08:19
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33644

Re: How to add additional fields to a customer

All modifications must be done in your own extension. Never change the Aimeos Core! If you need to store additional data from the admin interface, you have to extend the existing class using a new name, overwrite the fromArray() method and configure your new class name like @tenkraD said. The data ...
by mohal_04
12 Apr 2018, 07:54
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33644

Re: How to add additional fields to a customer

All modifications must be done in your own extension. Never change the Aimeos Core! If you need to store additional data from the admin interface, you have to extend the existing class using a new name, overwrite the fromArray() method and configure your new class name like @tenkraD said. The data ...
by mohal_04
11 Apr 2018, 12:18
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33644

Re: How to add additional fields to a customer

You can find documentation about Vue.JS there: https://vuejs.org/ You don't need that much knowledge about Vue.JS. There are only three important things: 1.) Add the new key in your new template there: https://github.com/aimeos/ai-admin-jqadm/blob/master/admin/jqadm/templates/product/item-price-sta...
by mohal_04
11 Apr 2018, 11:31
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33644

Re: How to add additional fields to a customer

tenkraD wrote:Hi moval,

dont forget, if you update the aimeos you have to rebuild your extension with the extensionbuilder that it is working right.
because they have changed the directory structur and some other stuff, i made this mistake too.

bye
Thanks Buddy!!! Already did that :) ...