Re: Forum constantly reloads when not logged in.
Posted: Sat May 16, 2020 4:25 pm
default addons/page-forum.php file on plugin repository has been patched to resolve definitively this issue, as said above, it substitute this line of code:
with this:
i assume the wrong result may was given by the previous code, on different Php versions. It do not return the same into my tests
Code: Select all
var wp_u_logged = ".$current_user->ID.";
Code: Select all
var wp_u_logged = ".get_current_user_id().";