Search found 40 matches

by jramirezgranada
23 Aug 2018, 14:47
Forum: Laravel package
Topic: Default Aimeos Data
Replies: 3
Views: 3315

Default Aimeos Data

Hi there; I want to change some default data, i.e product types, I want to remove yours to create my own product types, I've created this file /my-ext/lib/custom/setup/default/data/type.php also I created /my-ext/lib/custom/setup/AddTypeData.php with this content. type.php <?php /** * @license LGPLv...
by jramirezgranada
16 Aug 2018, 21:21
Forum: Laravel package
Topic: Extend Files
Replies: 1
Views: 835

Extend Files

How can I extend ext/ai-client-html/client/html/src/Client/Html/Basket/Standard/Standard.php int my own extension ? I created the file in the same folder structure ext/myext/client/html/src/Client/Html/Basket/Standard/MyExtStandard.php but it doesn't work. Do i have to setup it in any config file ? ...
by jramirezgranada
14 Aug 2018, 19:42
Forum: Laravel package
Topic: Get Product Detail
Replies: 1
Views: 897

Get Product Detail

Hi there; I've added new fields to products table, in the product detail I could show the additional information, but when I want to show that information in basket I cann't get it, when you use $this->summaryBasket->getProducts() we get some basic information. How can I get all fields for those pro...
by jramirezgranada
13 Aug 2018, 20:32
Forum: Laravel package
Topic: Get Attribute detail
Replies: 1
Views: 1095

Get Attribute detail

Hi there; So i'm trying to show some additional information in the basket. I have set up a hidden attribute for a product, and the attribute has a specific price, I get the hidden type attributes with this line in detail-standard.php $product->getAttributes('hidden') But I need to get the attribute ...
by jramirezgranada
10 Aug 2018, 21:29
Forum: Laravel package
Topic: How to pass data to partial
Replies: 1
Views: 808

How to pass data to partial

Laravel: 5.6 Aimeos: 2018.04 PHP: 7.x Hi there; In the product detail I need to send a new variable to price-standard.php, I have to show some additional data that is coming from a hidden attibute. I tried this but it doesn't work <?= $this->partial( $this->config( 'client/html/common/partials/price...
by jramirezgranada
09 Aug 2018, 19:21
Forum: Laravel package
Topic: Extend Catalog
Replies: 2
Views: 1026

Re: Extend Catalog

Hey Thanks, it works ... :D :D
by jramirezgranada
08 Aug 2018, 19:12
Forum: Laravel package
Topic: Extend Catalog
Replies: 2
Views: 1026

Extend Catalog

Laravel: 5.6 Aimeos: 2018.04 PHP: 7.x Hi there; I've added new fields to others domains like attributes and they worked as expected, now I'm trying to add new fields to Catalog domain but Always I get the error that number of binds doesn't match, I've debugged the process to insert a new catalog ite...
by jramirezgranada
24 Jul 2018, 20:15
Forum: Laravel package
Topic: Migrate Attributes Set and Attributes from Magneto 1
Replies: 2
Views: 1152

Migrate Attributes Set and Attributes from Magneto 1

Hi there; Laravel: 5.6 Aimeos: 2018.4 PHP: 7.2 Env: Linux We are starting to migrate a Magento store to aimeos store, we have a lot of attributes set and attributes in magento that we want to have in aimeos, so I have a couple of questions: What is the best way to have them in the database ? as a at...
by jramirezgranada
12 Jul 2018, 20:49
Forum: Laravel package
Topic: Custom Menu Element Admin Panel
Replies: 2
Views: 2188

Re: Custom Menu Element Admin Panel

Thanks,
I've fixed, I had to change the path in the config array in the manifest.php.
by jramirezgranada
12 Jul 2018, 20:27
Forum: Laravel package
Topic: Custom Menu Element Admin Panel
Replies: 2
Views: 2188

Custom Menu Element Admin Panel

Laravel: 5.6 Aimeos: 2018.04 PHP: 7.x Hi Everyone; I'm working with aiemos 2018.04 version and I'm trying to get a new element in the admin panel, I followed your recommendation https://aimeos.org/help/laravel-package-f18/admin-dashboard-add-a-custom-tab-in-locale-menu-t1414.html#p6043 , so far eve...