• Resolved maestroc

    (@maestroc)


    I recently moved this wordpress site (law-in-tahoe.com) from a development server to the live site and although everything else copied just fine the Home house icon in the main menu is no longer displaying. If this was a broken image I am sure I could figure it out but since it is calling an icon font file I don’t know what to do. I checked and the font folder copied over in the happenstance/css folder and all the files are there as expected. Is there a setting somewhere that I have missed that didn’t get changed during the migration to the new server?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author TT Themes

    (@tomastoman)

    Hi,

    please go to “Settings > General” and verify that both “WordPress Address (URL)” and “Site Address (URL)” are set with “www” (www.law-in-tahoe.com). If not, the icon font files would be called incorrectly.

    Best regards,
    Tomas Toman

    Thread Starter maestroc

    (@maestroc)

    They were both set with www. at the beginning. Still are. Any idea what else I should check or try?

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    when I check the source code of your website law-in-tahoe.com, I can see that all scripts are loaded without www. If both “WordPress Address (URL)” and “Site Address (URL)” are set with “www”, there might be a problem in your .htaccess file. Please check this file or ask your web host provider to configure it for you.

    Best regards,
    Tomas Toman

    Thread Starter maestroc

    (@maestroc)

    I’m not seeing anything in the htaccess that would redirect anything so far as I know. This is what is in there now:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    There is nothing there that should affect it right? Any other ideas of what might be the cause? If not, is there a workaround to let me just use an image file of a house instead of pulling that icon from the font?

    Thread Starter maestroc

    (@maestroc)

    Never mind. I got it. I added

    RewriteCond %{HTTP_HOST} ^example.com [NC]
    RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301,NC]

    to the htaccess and reloaded the page. Now the icon is showing up properly. Thank you for guiding me in the right direction.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Missing Home icon after moving site’ is closed to new replies.