zesseb
Forum Replies Created
-
I got the same issue and found why! My theme contains jQuery libraries with obsolete functions such «live».
In my console, I had a jquery error «live is not a function». I replaced it by «on» and all works pretty well now 🙂OK I found! Thank you!
I’m glad to have contributed to perform this very powerful plugin! Sorry for my first 1 star review, I would like to rate it with 5 stars now, but I don’t know how to change it?!?
I found a solution: I replaced each call to
$polylang->get_translationsin core.php by$polylang->model->get_translationsand it seems to work fine now!Thanks for your answer.
I noticed that the function Core/get_excluded does not work.
When you call the global $polylang, it seems all is fine, but when you call the function$exclude += $polylang->get_translations('post', $id);all stops.I saw that this function should be
$exclude += $polylang->get_translations($id);but it also does not work.