Search found 8147 matches
- 24 Aug 2024, 15:04
- Forum: Help
- Topic: How to handle products with many sizes?
- Replies: 7
- Views: 1804
Re: How to handle products with many sizes?
You can add different a stock level for each variant article in the product detail > Variants tab
- 24 Aug 2024, 15:03
- Forum: Help
- Topic: Set a custom price for a product when added to cart
- Replies: 9
- Views: 1338
Re: Set a custom price for a product when added to cart
What is the output of the logging in your basket plugin?
- 23 Aug 2024, 07:47
- Forum: Laravel package
- Topic: Unable to add/save custom columns for catalog
- Replies: 3
- Views: 758
Re: Unable to add/save custom columns for catalog
You don't need to copy the SQL statements, especially not for the sub-managers. What happens if you remove them from your config?
- 22 Aug 2024, 10:21
- Forum: Laravel package
- Topic: Unable to add/save custom columns for catalog
- Replies: 3
- Views: 758
Re: Unable to add/save custom columns for catalog
The the easy way by creating a decorator for the catalog manager:
https://aimeos.org/docs/2024.x/models/e ... /#easy-way
The custom way works too but you have to extend the catalog standard manager class and overwrite the methods you need (updateUsage() for example).
https://aimeos.org/docs/2024.x/models/e ... /#easy-way
The custom way works too but you have to extend the catalog standard manager class and overwrite the methods you need (updateUsage() for example).
- 22 Aug 2024, 10:15
- Forum: Laravel package
- Topic: Email Job Errors
- Replies: 1
- Views: 582
Re: Email Job Errors
You can enable debug logging: https://github.com/aimeos/aimeos-larave ... p.php#L171
Or you can add a few debug statements on your own in the job controller: https://github.com/aimeos/ai-controller ... andard.php
Or you can add a few debug statements on your own in the job controller: https://github.com/aimeos/ai-controller ... andard.php
- 22 Aug 2024, 10:13
- Forum: Help
- Topic: "Sort by" Section Disappears When Selecting "Price"
- Replies: 3
- Views: 936
Re: "Sort by" Section Disappears When Selecting "Price"
If no products for the selected currency are found, then no products are returned and the total count is 0. This also removes the pagination including the sort options: https://github.com/aimeos/ai-client-htm ... #L147-L158
- 21 Aug 2024, 12:01
- Forum: Help
- Topic: Product tags
- Replies: 11
- Views: 62761
Re: Product tags
Yes, if the tags are referenced by the products via the mshop_product_list table.
- 21 Aug 2024, 12:00
- Forum: Help
- Topic: How to handle products with many sizes?
- Replies: 7
- Views: 1804
Re: How to handle products with many sizes?
Create a selection product with six variant articles and assign each variant article another size attribute.
- 21 Aug 2024, 11:58
- Forum: Help
- Topic: Set a custom price for a product when added to cart
- Replies: 9
- Views: 1338
Re: Set a custom price for a product when added to cart
Update the price only for the order product contained in $value and don't loop over all order products
Re: Price
Just for understanding:
1.) The costs price is the price you purchase the product from the manufacturer
2.) The marketer price is the price you sell the product to the vendors
3.) The default price is the price a vendor can offer the product on the marketplace
1.) The costs price is the price you purchase the product from the manufacturer
2.) The marketer price is the price you sell the product to the vendors
3.) The default price is the price a vendor can offer the product on the marketplace