Search found 70 matches

by Travin
03 Feb 2018, 03:24
Forum: Laravel package
Topic: Can't fetch attributes images at suggested products
Replies: 1
Views: 1203

Can't fetch attributes images at suggested products

Hi all! I can't fetch images of atributes of suggested products. I have suggested products at my client\html\templates\catalog\detail\body-default.php <?php if( ( $posItems = $this->detailProductItem->getRefItems( 'product', null, 'suggestion' ) ) !== [] && ( $products = $getProductList( $po...
by Travin
01 Feb 2018, 09:57
Forum: Laravel package
Topic: Account page access
Replies: 9
Views: 4681

Re: Account page access

Okay, I'm logged in and redirected to /home URL. View for the url is placed here: \resources\views\home.blade.php @extends('layouts.app') @section('content') <div class="container"> <div class="row"> <div class="col-md-8 col-md-offset-2"> <div class="panel panel-de...
by Travin
31 Jan 2018, 19:04
Forum: Laravel package
Topic: Account page access
Replies: 9
Views: 4681

Re: Account page access

:? Okay now I have at my web.php: Route::get('/', function () { return view('welcome'); }); Auth::routes(); Route::get('/home', 'HomeController@index')->name('home'); Also we defined Aimeos\Shop\ShopServiceProvider::class at Providers section of config/app.php. And we have Aimeos account controller ...
by Travin
30 Jan 2018, 17:20
Forum: Laravel package
Topic: Theming
Replies: 4
Views: 2376

Re: Theming

Do you mean ai-payments? You can install ai-payments 2017, which is supporting Aimeos 2017.10. You just need to specify it at your composer.json: http://joxi.ru/BA06RpvtBxgbzm Please take a look at this explanation: http://joxi.ru/Vm6adQ7CxNy8Gr https://packagist.org/packages/aimeos/ai-payments#2017...
by Travin
28 Jan 2018, 18:26
Forum: Laravel package
Topic: Theming
Replies: 4
Views: 2376

Re: Theming

I think it's because of it's my first Laravel project. I have to learn Laravel and Aimeos at the same time. And my first Stripe integration too :lol: I am on my way to improve skills
by Travin
28 Jan 2018, 14:37
Forum: Laravel package
Topic: Account page access
Replies: 9
Views: 4681

Re: Account page access

Thank you for the answer Anton!
I have Auth::routes(); at my routes/web.php. Still don't understand how can i see account page :shock:
I'm currently authorized on my website. There are no account page link or account information. Orders history, user's addresses and so on.
by Travin
27 Jan 2018, 13:03
Forum: Laravel package
Topic: Modifying component HTML
Replies: 1
Views: 1188

Re: Modifying component HTML

Hello! You need to create extension first. Please look at these links https://aimeos.org/docs/Developers/Create_an_extension explanation https://aimeos.org/developer/extensions/ one-click builder There will be copies of core files. Then you can modify existing files of extension or remap it at confi...
by Travin
27 Jan 2018, 10:55
Forum: Laravel package
Topic: Theming
Replies: 4
Views: 2376

Theming

Hi all According to this page https://aimeos.org/docs/Configuration/Core/client/html/common/template/baseurl I want to change my theme folder. I did so, but it does not help. After my investigation i found vendor\aimeos\aimeos-laravel\src\views\base.blade.php : @extends('app') @section('aimeos_style...
by Travin
27 Jan 2018, 06:42
Forum: Laravel package
Topic: Stripe subscriptions
Replies: 11
Views: 4637

Re: Stripe subscriptions

The data is stored as order service attribute items: https://github.com/aimeos/aimeos-core/blob/master/lib/mshoplib/src/MShop/Service/Provider/Base.php#L560 You can retrieve them using something like (<code> is the code of the service payment option): $orderBaseItem->getService( \Aimeos\MShop\Order...
by Travin
27 Jan 2018, 04:35
Forum: Laravel package
Topic: Account page access
Replies: 9
Views: 4681

Account page access

Hi guys!
I know Aimeos has account page already. But honestly i don't understand how can i access it? Which URL it placed or how I need to config routes to see it? Can anyone please explain it to me a little bit? Thanks a lot!