• Hello, after some problems I had with installing SSL certificate, I realized some Icons where missing. Like the Jetpack Icon and WP Ulike Icon. Also on few of my themes, the social icons are missing.

    Here’s what I see on my Dashboard:

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,
    Have you updated your WordPress site url to support https. Looks like some components are still loading via http. When a page is accessed via https, http content is considered insecure and the browser blocks them from being displayed.

    To fix this you’ll have to do a database search and replace using any methods used in this article https://kinsta.com/knowledgebase/wordpress-search-and-replace/

    You’ll need to replace https://www.simplyapostolia.com with https://www.simplyapostolia.com

    This should fix your problem. Let me know whether this works.
    Good day!

    Thread Starter simplyapostolia

    (@simplyapostolia)

    Thank you for your fast response! I replaced everything with the plugin but still doesn’t seem to work. These plugins work normally, just the icons are missing.

    You’re welcome.
    Can you share the screenshot of your browser console. Let’s see whether there ane any errors

    Thread Starter simplyapostolia

    (@simplyapostolia)

    Hi Apostolia,
    The problem is caused by CORS(Cross Origin Resource Sharing) policy set by your hosting server. It happens because the server treats https://www.simplyapostolia.com and https://simplyapostolia.com as different domains.

    Try updating your .htaccess file with the below code.

    <IfModule mod_setenvif.c>
    	SetEnvIf Origin ":" IS_CORS
    </IfModule>
    
    <IfModule mod_headers.c>
    	<FilesMatch "\.(gif|png|jpe?g|svg|svgz|ico|webp|ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">
    		Header set Access-Control-Allow-Origin "*"
    	</FilesMatch>
    </IfModule>

    This code tries to remove CORS restriction, if supported by the server. Append it below the existing code in your .htaccess file. Do take a backup of the current file before modifying.

    Hope this helps.
    Good day!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Some of the Icons are missing from the Dashboard’ is closed to new replies.