Search found 10 matches

by gladgladwrap
27 Mar 2018, 20:48
Forum: Laravel package
Topic: How to change Homepage URL?
Replies: 5
Views: 4958

Re: How to change Homepage URL?

Check out Laracasts.com and look at how routing works.

Here is the Aimeos routes documentation: https://aimeos.org/docs/Laravel/Custom_routes

Add your routes to your routes/web.

Also take a look at Laravel documentation for which routing methods to use. view() and redirect() are good options.
by gladgladwrap
27 Mar 2018, 20:37
Forum: Laravel package
Topic: Laravel Aimeos Change VAT text
Replies: 4
Views: 2236

Re: Laravel Aimeos Change VAT text

in config/shop add:

Code: Select all

'mshop' => [
		'price'=> [
			'taxflag' => 0,
		],
	],
by gladgladwrap
25 Mar 2018, 03:43
Forum: Help
Topic: Override AIMEOS laravel shop frontend templates
Replies: 3
Views: 4676

Re: Override AIMEOS laravel shop frontend templates

https://aimeos.org/docs/Laravel/Adapt_pages Read the documentation under the heading "Don't Change the Package". Follow the instructions for adapting specific pages by making your own copies of the aimeos templates into your resources/views directory. You will have to create a vendor/shop...
by gladgladwrap
24 Mar 2018, 19:38
Forum: Laravel package
Topic: Safe payment with Aimeos + Stripe
Replies: 3
Views: 2210

Re: Safe payment with Aimeos + Stripe

I am still waiting for a response to my questions on the linked thread. The person who did the Stripe Integration is currently away. But yes, you are right in that we are not sending credit card details directly to the server. Instead, we are sending the card details to Stripe, who then returns a to...
by gladgladwrap
17 Mar 2018, 05:08
Forum: Help
Topic: Stripe Payments
Replies: 7
Views: 6936

Re: Stripe Payments

I am in the same situation (with Aimeos 2017.10.2) : I have not been able to process a successful test payment. This is probably because I'm not using only the Stripe Elements and I am sending additional credit card data directly to Stripe with the Aimeos input fields. I want to remove the original ...
by gladgladwrap
12 Mar 2018, 19:53
Forum: Laravel package
Topic: Problem translation .po files
Replies: 16
Views: 7942

Re: Problem translating .po file

Hello aimeos, I am able to translate files from the client domain, but unable to translate from controller/frontend domain. I found the original singular string within the controller/frontend/i18n/en.po file, and my config/shop.php looks like this: 'i18n' => [ 'en' => [ 'client' => [ 'Basket' => ['S...
by gladgladwrap
12 Feb 2018, 10:11
Forum: Laravel package
Topic: How to move localhost Aimeos onto Production Server
Replies: 3
Views: 2304

How to move localhost Aimeos onto Production Server

Hey Aimeos, I am working on a Mac with Laravel 5.5, PHP 7.1.12, and Aimeos 2017.10, because I ran into some glitches with the 2018 release one month back. I would like to move my Aimeos project onto a live server. I've already done my database export with mysqldump and then I imported it without a p...
by gladgladwrap
30 Jan 2018, 16:13
Forum: Laravel package
Topic: Theming
Replies: 4
Views: 2338

Re: Theming

I'm in the same position as you.

I wanted to download a payments extension so credit card payments with stripe could be made but it required the 2018 version of Aimeos. I had some errors with the most recent version so I had to revert to 2017.10 which isn't supported by the payment extension.
by gladgladwrap
29 Jan 2018, 03:46
Forum: TYPO3 extension
Topic: Stocklevel per size
Replies: 4
Views: 2178

Re: Stocklevel per size

I found the solution/ I found out how to add our own attributes. Simply click on the Attributes tab and add a new one. Then if we go back to a specific product's Variant tab we can add this new Variant Attribute. Some things in the API and the structure of the documentation is not very intuitive. Ca...
by gladgladwrap
29 Jan 2018, 02:58
Forum: TYPO3 extension
Topic: Stocklevel per size
Replies: 4
Views: 2178

Re: Stocklevel per size

Aimeos, After selecting a product and moving to tab: Basic I have changed theType to Selection. Within the Products I moved to the Variants tab and I created the instances for the different clothing sizes (S, M, L, ...), each with their own unique SKU and labels. I am also able to add stock for each...