Wednesday, 18 September 2013

How can I include custom jquery slider for related products Magento 1.7.0.2

How can I include custom jquery slider for related products Magento 1.7.0.2

I am trying to build a custom jquery slider in the Product page meaning
the view.phtml in Magento 1.7.0.2
The code below is working and It fetches me the Related Products
<?php $related_prods = $_product->getRelatedProductIds(); ?>
<?php foreach($related_prods as $related): ?>
<?php $_rel = Mage::getModel('catalog/product')->load($related); ?>
<?php echo $_rel->getName(); ?>
<img src="<?php echo $_rel->getImageUrl(); ?>"/>
<?php endforeach; ?>
I would like to include this code with a horizontal jquery slider but I
haven't found something yet.
Does anyone has a horizontal jquery slider to include the php code above?

No comments:

Post a Comment