Search found 8 matches

by VanCityDev
04 May 2020, 17:11
Forum: Laravel package
Topic: Category Page
Replies: 1
Views: 908

Category Page

I want to show a page with just one category on it (ie: all products from one category). I can do this below to pull the category page, but how do I specify the correct category? I can't figure out how to pass the category ID variable into it. Route::match( array( 'GET', 'POST' ), '/my-category/', a...
by VanCityDev
14 Apr 2020, 21:00
Forum: Laravel package
Topic: Delivery with multiple items
Replies: 1
Views: 812

Delivery with multiple items

Is it possible for the delivery costs to increment based on the number of products? ie $25.00 for the first item, and $2.50 for each additional item?
by VanCityDev
19 Mar 2020, 18:30
Forum: Laravel package
Topic: Shipping prices not showing
Replies: 5
Views: 1943

Re: Shipping prices not showing

aimeos/ai-admin-jqadm 2019.10.11 Aimeos ai-admin-jqadm exte... aimeos/ai-admin-jsonadm 2019.10.4 Aimeos ai-admin-jsonadm ex... aimeos/ai-client-html 2019.10.13 Aimeos ai-client-html exte... aimeos/ai-client-jsonapi 2019.10.4 Aimeos JSON API extension aimeos/ai-controller-frontend 2019.10.9 Aimeos a...
by VanCityDev
19 Mar 2020, 17:07
Forum: Laravel package
Topic: Shipping prices not showing
Replies: 5
Views: 1943

Re: Shipping prices not showing

I removed all the custom templates, and still shipping prices do not show up. Any idea? Not having any luck trouble shooting this.
by VanCityDev
03 Mar 2020, 05:08
Forum: Laravel package
Topic: Shipping prices not showing
Replies: 5
Views: 1943

Shipping prices not showing

I have the shipping prices set in the backend, and it shows the proper shipping options during checkout - but the prices are not displayed. Am I missing something?
by VanCityDev
06 Jan 2020, 04:47
Forum: Laravel package
Topic: Generate Product URL in Laravel Controller
Replies: 8
Views: 3849

Re: Generate Product URL in Laravel Controller

Ok. So when I try to call getView() from my controller I get an error:

Code: Select all

$context = app( 'aimeos.context' )->get(); //this works
$config = $context->getConfig(); //this works
$view = $context->getView(); //this generates the error

Code: Select all

Aimeos\MShop\Exception
View object not available
by VanCityDev
04 Jan 2020, 18:56
Forum: Laravel package
Topic: Generate Product URL in Laravel Controller
Replies: 8
Views: 3849

Re: Generate Product URL in Laravel Controller

Thanks for the reply, still not sure though. I can retrieve the aimeos context object like so, but I cannot figure out how to get the view / Url function from that. This does not work: $context = app( 'aimeos.context' )->get(); //get the context object successfully $view = $context->view(); //this f...
by VanCityDev
04 Jan 2020, 05:01
Forum: Laravel package
Topic: Generate Product URL in Laravel Controller
Replies: 8
Views: 3849

Generate Product URL in Laravel Controller

Created a laravel controller so I can have a custom page for a specific category listing. Cannot figure out how to generate the Product URL on this page (ie: the URL function). The below obviosly doesn't work, as I don't have access to the $view variable in the laravel controller. Laravel: 6.9 Aimeo...