Good question, same problem here. 😡
Facebook sees your https url as a completely different url, has nothing to do with the Hueman theme. Try this link for more info https://developers.facebook.com/docs/plugins/faqs#moving-urls
Anonymous User 12851872
(@anonymized-12851872)
Hi,
Not possible, go from http to https and a redirection, limit as a change of address, there is only the paid version of the Social Warfare plugin that manages to reset the counters as it should.
Hi @giovannibertagna,
On my national wp forum there is an entry to solve fb likes gone issue, by adding the following snippet to theme functions.php:
add_filter("rsssl_fixer_output","rsssl_exclude_http_url");
function rsssl_exclude_http_url($html) {
$html = str_replace('data-href="https://', 'data-href="http://', $html);
$html = str_replace('data-rsssl', 'data-rsssl-fb data-rsssl', $html);
return $html;
}
Hope this helps 🙂
Cheers!