Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’ve just gone through this. Just in case anyone wants to do this in the future –

    1. Make a child theme based on twenty ten
    2. Add the following css to the child theme css
    3. Copy header.php from twentyten to the child
    4. Make one change in header.php to the header image as below (around line 105)

    add to child theme style.css

    
    *{
    	box-sizing: border-box !important;
    }
    #access,
    #access .menu-header,
    div.menu,
    #colophon,
    #branding,
    #main,
    #wrapper {
    	width:100% !important;
    	max-width:940px;
    }
    #branding img{
    	width:100% !important;
    }
    #site-title{
    	width:70% !important;
    }
    #site-description{
    	width:30% !important;
    }
    #content{
    	margin-right: 30% !important;
    }
    #primary{
    	width:25% !important;
    }
    
    @media (max-width:899px){
    	#primary{
    		float:none !important;
    		width:100% !important;
    		border-top: 1px solid #e7e7e7;
    		margin-top:24px;
    		padding-top:24px;
    	}
    	#primary .widget-container{
    		max-width:480px;
    	}
    	#content{
    		margin-right: 20px !important;
    	}
    }
    
    

    Change this line in child theme header.php
    <img src="<?php header_image(); ?>" width="<?php echo esc_attr( $header_image_width ); ?>" height="<?php echo esc_attr( $header_image_height ); ?>" alt="" />
    to this
    <img src="<?php header_image(); ?>" width="100%" alt="" />

    I had this same issue and nothing I tried helped. I was already set as the super admin, but i was not able to access the network admin, and the “My sites” menu was not showing.

    But I finally figured out the solution (at least for me)! Hope this helps somebody else in the future! (p.s. I’m running WP 5.2.2).

    Firstly, follow all the steps to set up multisite (i.e. add the WP_ALLOW_MULTISITE define to your wp-config.php file, and follow all the steps to set up the network).

    Then, when you edit wp-config.php the second time – when the installer tells you to update your wp-config.php file with a bunch of multisite-related includes – at this point remove the define for WP_ALLOW_MULTISITE!

    So you should still have the new defines, including:
    define('MULTISITE', true);

    But REMOVE this line:
    define('WP_ALLOW_MULTISITE', true);

    Once I did that, I logged back in and suddenly the “My sites” menu appeared!

    Thread Starter projectitis

    (@projectitis)

    Thanks bcworkz. Sorry, I should have been clearer. I’ve located those functions already – the problem is that I don’t know where the loop is that is calling _submit on each function 🙂

    • This reply was modified 8 years, 1 month ago by projectitis.
Viewing 3 replies - 1 through 3 (of 3 total)