Page 1 of 1

Re: How to fetch multiple prices added by supplier for an product attribute

Posted: 26 Jun 2022, 07:49
by aimeos
The prices are both fetched from the database and you should be able to display them using:

Code: Select all

foreach( $attributeItem->getRefItems( 'price' ) as $priceItem ) {
	echo $priceItem->getValue();
}