Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my Shopify store I've added the infinite scroll jquery plugin for the catalog page, and it's working as intended by pulling in products from the next pages. The only issue I'm having is that my theme uses a function to load and format product images before displaying them, and since the products are being added dynamically the images are not being loaded or formatted properly. As I understood this can be fixed by calling that formatting function again whenever a new load of products is added by infinite scroll inside the callback parameter. However, I'm completely new to javascript and I'm struggling to get this last bit to work.

My image formatting function is included in an external javascript files (shop.js) and looks as follows:

var loadImages = function(elems, ch) {

$(elems).each(function(){
    $(this).imagesLoaded( function() {
        var i_w = $(this).width();  // image width
        var i_h = $(this).height(); // image height
        var c_h = ch;               // container height
        var v_o = (c_h - i_h) / 2;  // vertical offset
        if ( i_h > c_h ) {
            $(this).css('height',ch).css('width','auto');
        } else {
            $(this).css('margin-top',v_o);
        }
        $(this).fadeTo(200,1); // reveals image with a 200 ms-long fade-in.
    });
});

}

In that same file it is called to format images whenever we have a collection (catalog) page:

if (IS_COLLECTION) {

/* Preload and Format Images */
loadImages('#coll-product-list .four-per-row img',FOUR_PER_ROW_H);
loadImages('#coll-product-list .three-per-row img',THREE_PER_ROW_H);

var golden_height = 0;
$('#coll-product-list li').each(function(i){
    if ($(this).height() > golden_height) {
        golden_height = $(this).height();
    }
});

$('#coll-product-list li').css('height',golden_height);

in my index html file I'm trying to call that function again inside the infinite scroll callback parameter:

 $(function(){
    $('#more-products').infinitescroll({

    navSelector  : "#pagination",
                   // selector for the paged navigation (it will be hidden)
    nextSelector : "a#next-load",
                   // selector for the NEXT link (to page 2)
    itemSelector : "#added-products",
                   // selector for all items you'll retrieve
    },function(newElements){
    var $newElems = $(newElements).find('#coll-product-list .four-per-row img');
    loadImages($newElems, 10);
  });
});

I realize that I might be making several mistakes at once, but the Chrome debugging console is showing me: Uncaught ReferenceError: $loadImages is not defined

Which makes me think there is a much more basic problem that I should be fixing first. Any ideas how I should do this?

Thanks in advance

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.