Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter lucaskeiser

    (@lucaskeiser)

    I am talking about the display name for a single user on a multisite install. I need the main site to display my real name and the second site to display my nickname.

    Thread Starter lucaskeiser

    (@lucaskeiser)

    Like I said, the styling is for the Pages widget that comes pre-packaged with WordPress. Everything I have tried fails miserably.

    <div id="pages-3" class="widget widget_pages"><h3>Pages</h3>		<ul>
    			<li class="page_item page-item-2"><a href="https://localhost:8888/dummypress/?page_id=2" title="About">About</a></li>
    <li class="page_item page-item-163"><a href="https://localhost:8888/dummypress/?page_id=163" title="About">About</a></li>
    <li class="page_item page-item-153"><a href="https://localhost:8888/dummypress/?page_id=153" title="Contact Us">Contact Us</a>
    <ul class='children'>
    	<li class="page_item page-item-27"><a href="https://localhost:8888/dummypress/?page_id=27" title="Our Location">Our Location</a></li>
    </ul>
    </li>
    
    <li class="page_item page-item-151"><a href="https://localhost:8888/dummypress/?page_id=151" title="Links">Links</a></li>
    <li class="page_item page-item-155"><a href="https://localhost:8888/dummypress/?page_id=155" title="News">News</a>
    <ul class='children'>
    	<li class="page_item page-item-147"><a href="https://localhost:8888/dummypress/?page_id=147" title="History">History</a></li>
    	<li class="page_item page-item-142"><a href="https://localhost:8888/dummypress/?page_id=142" title="Our Company">Our Company</a></li>
    	<li class="page_item page-item-144"><a href="https://localhost:8888/dummypress/?page_id=144" title="Our Staff">Our Staff</a>
    	<ul class='children'>
    		<li class="page_item page-item-29"><a href="https://localhost:8888/dummypress/?page_id=29" title="Employment Opportunities">Employment Opportunities</a></li>
    
    	</ul>
    </li>
    </ul>
    </li>
    <li class="page_item page-item-149"><a href="https://localhost:8888/dummypress/?page_id=149" title="Support">Support</a></li>
    		</ul>
    		</div>
    .widget{
    	position: relative;
    }
    
    .widget ul{
    	position: absolute
    }
    
    .widget ul li{
    	border-top: 1px solid #ddd;
    }
    
    .widget ul li a{
    	display: block;
    	float: left;
    	clear: both;
    	padding: 0 auto 0 0;
    }
    
    .widget ul ul{
    	position: relative;
    	display: block;
    	border-top: 1px solid #ddd;
    }
    
    .widget ul ul li{
    	border-top: 0;
    }
    .widget ul ul li a{
    	display: block;
    	float: right;
    	clear: both;
    	padding: 0 0 auto 0;
    }

    Thread Starter lucaskeiser

    (@lucaskeiser)

    That worked smashingly! How could I also make that slug the title for the page?

    Thread Starter lucaskeiser

    (@lucaskeiser)

    Thread Starter lucaskeiser

    (@lucaskeiser)

    Can anyone help me with this?

    The concept is similar to setting up a forum using custom post types. I need subscribers to be able to post the custom post type without setting their role as contributor. (They need to not have access to adding new posts.)

    Thread Starter lucaskeiser

    (@lucaskeiser)

    I think the problem occurred when I modified wp-config.php. I mistook MULTISITE for WP_ALLOW_MULTISITE. Once that was defined, everything worked properly.

Viewing 6 replies - 1 through 6 (of 6 total)