Search found 8168 matches

by aimeos
03 Oct 2024, 07:53
Forum: Help
Topic: How to implement discounts (Seasonal)
Replies: 3
Views: 341

Re: How to implement discounts (Seasonal)

Yes, it works with price rules to as they also have a start and end date, a Percent provider for changing the prices and a Category decorator to apply the rule only to products from certain categories:
https://aimeos.org/docs/latest/manual/rules/
by aimeos
02 Oct 2024, 08:03
Forum: Help
Topic: How to implement discounts (Seasonal)
Replies: 3
Views: 341

Re: How to implement discounts (Seasonal)

1.) Specify start and end dates: https://aimeos.org/docs/latest/manual/coupon-details/ 2.) Use the Percent coupon provider: https://aimeos.org/docs/latest/manual/coupons/#percentrebate 3.) Use the category decorator to restrict discounts: https://aimeos.org/docs/latest/manual/coupon-decorators/#cate...
by aimeos
02 Oct 2024, 07:58
Forum: Laravel package
Topic: How to confgigure base.blade.php in new theme extension
Replies: 3
Views: 224

Re: How to confgigure base.blade.php in new theme extension

Place the base.blade.php file for the new theme in ./resources/view/vendor/<custom extension name>/base.blade.php
by aimeos
02 Oct 2024, 07:55
Forum: TYPO3 extension
Topic: How can i configuration this in aimeos 24?
Replies: 2
Views: 272

Re: How can i configuration this in aimeos 24?

Please have a look here: https://aimeos.org/docs/2024.x/typo3/cu ... nd-regions

Code: Select all

plugin.tx_aimeos.settings.common.countries {
    ...
}
by aimeos
02 Oct 2024, 07:53
Forum: TYPO3 extension
Topic: categories do not show up in product
Replies: 5
Views: 2700

Re: categories do not show up in product

Can you create a video showing the problems?
by aimeos
30 Sep 2024, 10:01
Forum: Laravel package
Topic: Error when try to add new tennant in multishop
Replies: 7
Views: 1624

Re: Error when try to add new tennant in multishop

OK, we've understood the problem now. In the 2024.10 version released in the next days, the setup command will be able to create new sites and add the necessary locale item automatically. You will be also able to configure the language and currently of the locale item (if different from en/USD) by u...
by aimeos
28 Sep 2024, 12:03
Forum: TYPO3 extension
Topic: TYPO312 - Aimeos24 - Free delivery, when ordering for more then 30.- €
Replies: 1
Views: 1005

Re: TYPO312 - Aimeos24 - Free delivery, when ordering for more then 30.- €

Create two delivery options (standard and free) and configure the BasketValues decorator for both options with different max/min values: https://aimeos.org/docs/latest/manual/s ... sketvalues
by aimeos
27 Sep 2024, 12:34
Forum: Laravel package
Topic: Adding custom parameters to jobs command
Replies: 3
Views: 976

Re: Adding custom parameters to jobs command

We will add that possibility to 2024.10 LTS :-)
by aimeos
27 Sep 2024, 11:43
Forum: Laravel package
Topic: Adding custom parameters to jobs command
Replies: 3
Views: 976

Re: Adding custom parameters to jobs command

The Artisan aimeos:jobs command currently doesn't support passing arbitrary options to the Aimeos job controllers. One possibility would be to add an "--option" parameter like the aimeos:setup command supports to set custom configuration: https://github.com/aimeos/aimeos-laravel/blob/maste...