Hi!
If you are using the OceanWP theme and with the OceanExtra plugin, it seems that the last update of one of these two has caused this problem. Temporary solution that (@harrisdesigned) has given me in another post:
input[type=checkbox]:checked:before {
color: #C16E2A !important;
content: '\f058' !important;
padding-top:1px;
}
input[type="checkbox"] {
height:18px;
width:18px
}
Or, if you want the content of the check with the symbol ‘X’:
input[type=checkbox]:checked:before {
color: #C16E2A !important;
content: 'X' !important;
padding-top:1px;
}
input[type="checkbox"] {
height:18px;
width:18px
}
Other says: It is caused by the update of Ocean Extra v1.5.17 plugin. There it was changed from FontAwesome 4.7 to 5.0.
So this is the right forum:
https://www.ads-software.com/support/plugin/ocean-extra/
And they also say: For now, roll back to OceanWP v1.7.1 and Ocean Extra v1.5.16 to temporary fix this point.
In my case, even if it is a temporary solution, I mark this topic as resolved!