Problem after updating WordPress
-
Following upgrading to the latest version of WordPress (4.9.7), the menu displays little images against menu items which have submenus (but not the ones that don’t). This spoils the look and I have tried all sorts of ways to get rid of them, but with no success. (I am using Responsive theme, which I have also upgraded.) How I can get rid of these little images?
The page I need help with: [log in to see the link]
-
Hello,
It seems there is some CSS/Fonts related issue on your website.
If you check in your browser console, there is one error :
Access to Font at ‘http://s580190767.websitehome.co.uk/wp-content/themes/responsive/core/css/fonts/fontawesome-webfont.woff2?v=4.7.0’ from origin ‘http://www.dunsfoldvillageshop.co.uk’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://www.dunsfoldvillageshop.co.uk’ is therefore not allowed access.
Try to add this in you .htaccess File :
<IfModule mod_headers.c>
<FilesMatch “\.(ttf|ttc|otf|eot|woff|woff2|font.css)$”>
Header set Access-Control-Allow-Origin “*”
</FilesMatch>
</IfModule>Hope this helps.
Thanks.
The problem occurs due to the font awesome fonts are not loading on your website. I believe you would need a developer to fix that.
But temporarily you can add this css below.menu-item-has-children::after{content:"" !important;}in Appearance->Customize settings, so it will hide the broken images.
Thanks Swayam. I tried this but it doesn’t help.
Hello dvsweb,
Did you try the solution provided in my previous comment?
In case that didn’t help, try this temporary solution
Go to your Style.css and try to find class: “.menu-item-has-children::after”
And remove: content: “\f107”;
Hope this helps.
Thanks.
The change to the .htaccess file has worked. Many thanks.
The topic ‘Problem after updating WordPress’ is closed to new replies.