Hello J.R,
I just tried the solution posted by Zed, by modifying the function anima_ipblocks() in the
/includes/landing-page.php file from
if (function_exists('pll_get_post')) {
	$page = get_post($pageid);
}
to
if (function_exists('pll_get_post')) {
    $page = get_post(pll_get_post($pageid, get_locale()));
    $pageid = pll_get_post($pageid, get_locale());
} else {
    $page = get_post($pageid);
}
Regards.