Search found 7872 matches

by aimeos
20 Nov 2017, 22:43
Forum: Help
Topic: Problems with setting up Selections for Products
Replies: 13
Views: 4898

Re: Problems with setting up Selections for Products

In this case, you should add all possibilities as configurable options.
by aimeos
20 Nov 2017, 22:40
Forum: Symfony bundle
Topic: Locating components / templates
Replies: 11
Views: 12608

Re: Locating components / templates

Caching is enabled by default as long as you don't disable it during development. Add this to your ./app/config/config.yml (four spaces per level) to disable caching: aimeos_shop: madmin: cache: manager: name: None The basket is cached too until it's updated as long as you don't disable caching for ...
by aimeos
20 Nov 2017, 22:24
Forum: TYPO3 extension
Topic: How to see the attibutes names in the fromtend
Replies: 2
Views: 1149

Re: How to see the attibutes names in the fromtend

You can translate your new attributes using TypoScript: https://aimeos.org/docs/TYPO3/Overwrite_translations
The "domain" is "client/code" and "string" is your attribute type code.
by aimeos
20 Nov 2017, 22:16
Forum: TYPO3 extension
Topic: How to change the HTML-Template
Replies: 1
Views: 1393

Re: How to change the HTML-Template

Please create a new Aimeos extension for your project (https://aimeos.org/developer/extensions/) and place the modified templates in the same directory structure as in the Aimeos HTML client. You can find articles for all you will need in the docs: https://aimeos.org/docs/TYPO3#Frontend
by aimeos
20 Nov 2017, 22:11
Forum: TYPO3 extension
Topic: How do I print an invoice
Replies: 12
Views: 5903

Re: How do I print an invoice

Aimeos doesn't care about invoicing because this is something for an accounting system. You can export the Aimeos orders in the order panel and the exported file will be available afterwards in the dashboard. Alternatively, you can add a button that generates a PDF of the order if that is enough for...
by aimeos
19 Nov 2017, 13:51
Forum: Laravel package
Topic: Custom cart behaviour and reseller accounts
Replies: 5
Views: 6354

Re: Custom cart behaviour and reseller accounts

I have created a list of products without including the prices, I want the customer to be able to add these products to the cart and when the customer is ready for checkout, I want him to be able to click on a button on the cart that will send the cart to the supplier by email so he can specify the...
by aimeos
19 Nov 2017, 13:32
Forum: Laravel package
Topic: Overwrite attributes
Replies: 9
Views: 3475

Re: Overwrite attributes

Please attach a CSV file with a minimum amount of lines only that produces the error.
by aimeos
19 Nov 2017, 13:16
Forum: Help
Topic: Having the Supplier to enter the prices ,
Replies: 3
Views: 1857

Re: Having the Supplier to enter the prices ,

Block pricing is already part of Aimeos. Add more than one price to your product and enter different quantities for each price.
by aimeos
18 Nov 2017, 13:26
Forum: TYPO3 extension
Topic: Digital products: Downloads broken, plugin without output
Replies: 6
Views: 2577

Re: Digital products: Downloads broken, plugin without outpu

Like we've guessed, TYPO3 adds some code from the page around the downloaded file. We got it to work by removing the Login plugin and added an extension setup template to the page in the backend with this content: config.additionalHeaders.1000.header = Cache-control: no-store page = PAGE page { type...
by aimeos
18 Nov 2017, 11:47
Forum: Help
Topic: Having the Supplier to enter the prices ,
Replies: 3
Views: 1857

Re: Having the Supplier to enter the prices ,

You have to implement something like this: - Save the basket using the store() method of the order base manager - Send a link with the ID from the mshop_order_base table to the vendor - Implement a interface for the vendors where they can enter the prices and remove out of stock products - Send an e...