product price and buying button missing in detail-page
Forum rules
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
-
mr_typo3worker
- Posts: 3
- Joined: 15 Apr 2026, 07:22
product price and buying button missing in detail-page
I'm new to Aimeos and setting up a new composer instance on a TYPO3 13.* system.
I managed tot get as far as, having categories, and a product. The new product is visible on the catalogue and on the detail-page. Only thing is, there is no price shown and no button or any other parts to select and buy the product?
What Am I missing so far?
I'm using the bootstrap package, site is in English, currency Eu. Any help on this?
I managed tot get as far as, having categories, and a product. The new product is visible on the catalogue and on the detail-page. Only thing is, there is no price shown and no button or any other parts to select and buy the product?
What Am I missing so far?
I'm using the bootstrap package, site is in English, currency Eu. Any help on this?
Re: product price and buying button missing in detail-page
Did you add a price to the products and checked if the used currency matches the language/currency combination in the Locale > Locale panel?
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
-
mr_typo3worker
- Posts: 3
- Joined: 15 Apr 2026, 07:22
Re: product price and buying button missing in detail-page
I was just going post a reply that I found out that it has to do with the languages settings. So now the product and price is available and can be ordered. Now I have to find out how further shape the process. Nice 
- How can I get a price (and button) in the list view as well?
- Any samples of "dutch" shops and how to apply shipping options (post nl, dpd, dhl or others) and payment options (paypall, ideal).
- How to print labels and other docs for shipping (brother labelprinter) is there a plugin or other easy way to get that.
- How can I get a price (and button) in the list view as well?
- Any samples of "dutch" shops and how to apply shipping options (post nl, dpd, dhl or others) and payment options (paypall, ideal).
- How to print labels and other docs for shipping (brother labelprinter) is there a plugin or other easy way to get that.
Re: product price and buying button missing in detail-page
There's a configuration option to enable that:mr_typo3worker wrote: ↑15 Apr 2026, 09:12 - How can I get a price (and button) in the list view as well?
https://aimeos.org/docs/2024.x/config/c ... basket-add
In the showcases page are Dutch shops too:mr_typo3worker wrote: ↑15 Apr 2026, 09:12 - Any samples of "dutch" shops and how to apply shipping options (post nl, dpd, dhl or others) and payment options (paypall, ideal).
https://aimeos.org/showcases
Label printing isn't supported out of the box in Aimeos and you have to implement that yourself depending on the delivery provider you are using.mr_typo3worker wrote: ↑15 Apr 2026, 09:12 - How to print labels and other docs for shipping (brother labelprinter) is there a plugin or other easy way to get that.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
-
mr_typo3worker
- Posts: 3
- Joined: 15 Apr 2026, 07:22
Re: product price and buying button missing in detail-page
Wanted to work on the aimeos Typo3 shop again (after first removing it). Now ending uo with an sql error which I can not solve. Seems to be an issue with site id I guess? So that part is not clear to me. What should the site id be? I left it at default in the extension/ config. Or is there an other reason for this error? Tried by composer remove and install again. But no difference. Had it working before in the same TYPO3 instance. 
Code: Select all
(1/1) Aimeos\Base\DB\Exception
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'my_db_2026_2013.mshop_locale_site' doesn't exist: SELECT mlocsi."id" AS "locale.site.id", mlocsi."siteid" AS "locale.site.siteid", mlocsi."parentid" AS "locale.site.parentid", mlocsi."label" AS "locale.site.label", mlocsi."code" AS "locale.site.code", mlocsi."status" AS "locale.site.status", mlocsi."icon" AS "locale.site.icon", mlocsi."logo" AS "locale.site.logo", mlocsi."rating" AS "locale.site.rating", mlocsi."ratings" AS "locale.site.ratings", mlocsi."refid" AS "locale.site.refid", mlocsi."theme" AS "locale.site.theme", mlocsi."config" AS "locale.site.config", mlocsi."level" AS "locale.site.level", mlocsi."ctime" AS "locale.site.ctime", mlocsi."mtime" AS "locale.site.mtime", mlocsi."editor" AS "locale.site.editor" FROM "mshop_locale_site" mlocsi WHERE ( mlocsi."code" = 'default' ) GROUP BY mlocsi."id", mlocsi."siteid", mlocsi."parentid", mlocsi."label", mlocsi."code", mlocsi."status", mlocsi."icon", mlocsi."logo", mlocsi."rating", mlocsi."ratings", mlocsi."refid", mlocsi."theme", mlocsi."config", mlocsi."level", mlocsi."ctime", mlocsi."mtime", mlocsi."editor" ORDER BY mlocsi."id" ASC LIMIT 1 OFFSET 0 Re: product price and buying button missing in detail-page
Seems like your database doens't contain any Aimeos tables any more. Run from command line:
Code: Select all
./vendor/bin/typo3 aimeos:setupProfessional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,