lucaskeiser
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Different Usernames for SiteI 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.
Forum: Themes and Templates
In reply to: UL Menu with ChildrenLike 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; }
Forum: Hacks
In reply to: Custom Post Type Rewrite ConfussionThat worked smashingly! How could I also make that slug the title for the page?
Forum: Hacks
In reply to: Subscriber to post a Custom Post TypeAfter a week or so of searching I found this:
https://justintadlock.com/archives/2010/07/10/meta-capabilities-for-custom-post-typesForum: Hacks
In reply to: Subscriber to post a Custom Post TypeCan 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.)
Forum: Alpha/Beta/RC
In reply to: Network Setup Not Installing TablesI think the problem occurred when I modified wp-config.php. I mistook MULTISITE for WP_ALLOW_MULTISITE. Once that was defined, everything worked properly.