• Hi,

    I have wordpress multisites installed. Everything works well however when I try to upload different theme for child site the footer looks like this:

    My .htaccess looks like this:

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]

    Any idea what might be wrong here?

    Also I have tried the solution from this thread unfortunately not help.

    Thanks

Viewing 1 replies (of 1 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    The formatting for this post got whammied. Are you saying that instead of a toolbar you get the list of links?

    That’s usually because wp_footer() is missing from your theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Sub-domain themes do not display correctly’ is closed to new replies.