• Resolved johnfaraca

    (@johnfaraca)


    Is there a way to get the thumbnail retrieved from ebay feed, currently 80px to show the 140px one. Maybe script or something that replaces the 80.jpg to 140.jpg (I can show the src=”…/80.jpg fine). I can provide feed if that helps. I am sure that you are extremely busy, but you have made an awesome plugin.

    http://wordpress.org/extend/plugins/hungryfeed/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Jason

    (@verysimple)

    I think at the moment you’d have to do that with javascript on the page. something like this for example:

    jQuery('div.hungryfeed_item img').each(function(i,a) {
        a.src = a.src.replace('80.jpg','140.jpg');
    });
    Thread Starter johnfaraca

    (@johnfaraca)

    AWESOME!!!!!!!!!!!!! You are the best and thank you for your quick response!!! This worked awesome.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘ebay feed thumbnail’ is closed to new replies.