Hallo,
ich möchte gerne hinterlegte Produkt-Atrribute auf der "list.html" ausgeben
Es sind einfache Textfelder die dort abgebildet werden sollen!
In der Datei "attribute.phtml" habe ich das so hinbekommen:
echo 'Preis pro ', $_product->geteinheit(),' ', $_product->getgroesse(),' Liter';
Bei der list.html funktioniert das leider nicht!
Hi @markus_stange,
Try the below one:
$_product->getUnit()
$_product->getGroesse()
First attribute character should be CAPs after get.
or try the below
$_product->getData('unit'); $_product->getData('groesse');
Also make sure that you have selected Used in Product Listing=>Yes in the product attribute settings.
I hope it will help you!