cancel
Showing results for 
Search instead for 
Did you mean: 

Attribute in list.html

Attribute in list.html

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!

1 REPLY 1

Re: Attribute in list.html

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.
Screenshot from 2020-02-26 07-13-57.png

I hope it will help you!