Hi.
The social login function displays the old (red) Google icon even though the wpDiscuz Social Login settings page has the updated (color) icon.
I have the "Load Font Awesome css lib" option selected under Styles and Colors. Unselecting and/or reselecting it doesn't help.
An AI agent suggested the following code (where the url points to an uploaded version of the new Google icon) but it doesn't work (still shows old icon):
/* Hide old Google icon and replace */
.wpd-social-login-google svg,
.wpd-login-provider-google i {
display: none; /* Hide old icon */
}
.wpd-social-login-google:before {
content: "";
display: inline-block;
width: 18px;
height: 18px;
background: url("https://mydomain.com/.../Google-New-Logo.png") no-repeat center center;
background-size: contain;
}
How can I get the new Google icon to display for users? People are starting to forget that the old red one even refers to Google, LOL.
Thanks.

