Denpa
Chevereto Member
Found a little bug in chevereto 3.5.7, which causes all social network login buttons to display
regardless of their state in admin panel(even disabled ones).
It seems that a bug is caused by this line
in /app/themes/Peafowl/snippets/sign_services_buttons.php:6
Changing it to
fixes a problem.
Just thought I'll let you know.
regardless of their state in admin panel(even disabled ones).
It seems that a bug is caused by this line
PHP:
$services = CHV\Login::getSocialServices(['get' => 'all']);
Changing it to
PHP:
$services = CHV\Login::getSocialServices(['get' => 'enabled']);
Just thought I'll let you know.