That’s currently not officially supported in the API. I’m sure they’ll be adding it soon. I would hate to add support for it only to have it fail down the road if they change something.
Maybe if they don’t move on that too quickly, I’ll go ahead and add it with a caveat.
Thanks Rik!!!
After following the directions from the Dutch site I changed the line to a “_z.” so I could get the 640 size (and no unneeded api calls). 😀
Changed this line:
if ( options.size_callback == null || $calling.hasClass("video") ) {
$image.attr("src", $calling.attr("src").replace(/_[stm]\./g, "."));
to:
if ( options.size_callback == null || $calling.hasClass("video") ) {
$image.attr("src", $calling.attr("src").replace(/_[stm]\./g, "_z."));