Search found 140 matches

by cnoelker
25 May 2020, 13:43
Forum: TYPO3 extension
Topic: jqadm Configuration
Replies: 2
Views: 1365

jqadm Configuration

Hello, I am not sure if this is a bug or if I just missed something: I configured access rights to the aimeos module in TYPO3 backend for the role Editor according to the documentation in the following link: https://aimeos.org/docs/Configuration/Core/admin/jqadm This worked fine - but only until I c...
by cnoelker
24 May 2020, 11:56
Forum: TYPO3 extension
Topic: Package types for own extension
Replies: 1
Views: 996

Package types for own extension

Hello, there are several options for package types on the extension generator, located here: https://aimeos.org/extensions/ In which points do TYPO3 2019.x and TYPO3 2020.x differ? Is this only the ext_emconf.php or are there any breaking changes? I currently have an individual extension based on th...
by cnoelker
22 May 2020, 13:46
Forum: TYPO3 extension
Topic: XML import of product options
Replies: 4
Views: 1846

Re: XML import of product options

BTW, the other possible option can be imported with list.type="custom"
by cnoelker
11 May 2020, 11:31
Forum: TYPO3 extension
Topic: Configure an import directory per site
Replies: 2
Views: 1201

Re: Configure an import directory per site

A second thought on this: I am able to provide a second controller.php configuration with the import locations for the second site in an extension which applies only for the second site. The tx_aimeos.mshop.locale.site PageTS will be set to the site name of the second site. Is aimeos:jobs smart enou...
by cnoelker
11 May 2020, 11:22
Forum: TYPO3 extension
Topic: Storing a date for an attribute
Replies: 3
Views: 1459

Re: Storing a date for an attribute

Sorry, the example with "delivery date" was misleading. The dates which I would like to provide for the attribute actually have nothing to do with the delivery date of the item. Let's see if I can make this clear with another example: The products are T-Shirts which have an attribute depen...
by cnoelker
10 May 2020, 13:23
Forum: TYPO3 extension
Topic: Configure an import directory per site
Replies: 2
Views: 1201

Configure an import directory per site

Hi, I am preparing XML files for the import and put them into the directory which I configured in controller.php, e.g. jobs.product.import.xml.location= ... . Afterwards, I start the import on the command line, e.g. typo3cms aimeos:jobs product/import/xml default Now, I have a second site. I can pro...
by cnoelker
09 May 2020, 14:21
Forum: TYPO3 extension
Topic: Export Product Inventory to CSV
Replies: 2
Views: 1758

Re: Export Product Inventory to CSV

If you want to export orders in an individual format, then how about writing some PHP code which selects the entries out of the database and writes them to a file? You can call this script with a cronjob. Since the required export format as well as the file name in my project was quite different to ...
by cnoelker
09 May 2020, 14:05
Forum: TYPO3 extension
Topic: Storing a date for an attribute
Replies: 3
Views: 1459

Storing a date for an attribute

Hi there, I have an attribute which has a date, e.g. the attribute is "red" and the date field is "delivery from". So, when the user sees the color red, then he gets a notifying text that this color is available from that date. When I look at the attribute, I can provide a Text f...
by cnoelker
09 May 2020, 10:03
Forum: TYPO3 extension
Topic: Product options with checkbox field
Replies: 2
Views: 1243

Re: Product options with checkbox field

Hi, thank you. I checked the code. In case of a custom attribute, the lines starting from 156 are relevant, not the ones which you highlighted. So, only three types are accepted, currently: price, date and text (which is default). I added a case for the checkbox: <?php break; case 'checkbox': ?> <in...
by cnoelker
06 May 2020, 12:24
Forum: TYPO3 extension
Topic: Product options with checkbox field
Replies: 2
Views: 1243

Product options with checkbox field

Hello,

is there a way to configure a custom options field as a checkbox on the product detail page?
On the demo page: http://typo3.demo.aimeos.org/demo/detai ... article/0/
there is a dropdown, a text, an integer and a date field. How can I create a checkbox?

Claudia