How to fetch multiple prices added by supplier for an product attribute
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
How to fetch multiple prices added by supplier for an product attribute
Hi,
Added multiple prices for an attribute from backend Now want to display these multiple prices for attribute in Product detail page, currently its showing only one price How can I display multiple prices for a product attribute at Product detail page?
Added multiple prices for an attribute from backend Now want to display these multiple prices for attribute in Product detail page, currently its showing only one price How can I display multiple prices for a product attribute at Product detail page?
Re: How to fetch multiple prices added by supplier for an product attribute
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();
}
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
