Hello,
Is there a way to add "Starting From" to the prices for items with child items?
For example, have parent items show "Starting From $#.##".
Thank you.
<script type="text/javascript">(function($) {$(document).ready(function() {
$('.spacer-buy-area').each(function(){
if( $(this).find('.addtocart-button-disabled').size() > 0 ) {
$(this).find('.vm-price-value .vm-price-desc').html('Starting From: ');
}
});
$('.browse-view .product').each(function(){
if( $(this).find('.addtocart-button-disabled').size() > 0 ) {
$(this).find('.vm-price-value .vm-price-desc').html('Starting From: ');
}
});
});})(jQuery)</script>