replacing Laury's original merge where he removed the js statement that moved
the sale price next to the msrp price in list view theme file
$('.glm-member-list-record').each(function(){
if( $(this).find('.slash-price').length != 0 ){
$(this).find('.msrp-value').addClass('sale');
- $(this).find( $('.sale-price-value') ).insertAfter( $(this).find('.sale') ).css('display', 'block').css('float', 'right').addClass('sale-text');
+// $(this).find( $('.sale-price-value') ).insertAfter( $(this).find('.sale') ).css('display', 'block').css('float', 'right').addClass('sale-text');
}
});