Nadreck
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Reducing width of sidebar of Twenty-Fiteen themebody:before
Because it’s not really an element, “Inspect Element” doesn’t really pick it up. Sneaky.
+1 as well. This is a pretty major hindrance to the development cycle.
Forum: Alpha/Beta/RC
In reply to: Admin Bar Not Appearing on Front Page in SafariUpdate (Resolved):
I finally have the admin bar back. What it took was manually logging out and the back in again. I don’t know why it happened in the first place, and I don’t know why it didn’t go away when I cleared my cache and my cookies, but: logged in, logged out, logged back in -> admin bar.
Forum: Alpha/Beta/RC
In reply to: Admin Bar Not Appearing on Front Page in SafariI’m running Safari 5.1 on Mac OS X 10.6.8, running the latest nightly (updated it again tonight, same deal), gathered originally via svn and now through the built-in updater, running a child theme of Twenty Eleven (a few minor tweaks to css, nothing that even touches the header).
I’ve verified the “Show Admin Bar when viewing site” option is checked, and moreover, the same account has the admin bar displayed when viewed in Chrome and Firefox.
I’ve had a small handful of plugins running the past (Akismet, Jetpack, Twitter Tools, WPTouch, Wordbooker), but have turned them all off in the process of trying to debug this issue. I also had a few extensions running in Safari (AdBlock, LittleSnapper, 1Password, Coda Notes), but those are all turned off now as well. I refreshed, then cleared, then refreshed again, still no luck. Went into the Develop menu and turned off caching entirely — still no admin bar.
Not really sure what else to try at this point — on the same user account, at the same time, the admin bar is present on all other browsers, except Safari.
Forum: Alpha/Beta/RC
In reply to: Using template tags in the new menu managerThe kludge that seems to work is to manually recreate the menu structure. This defeats the point of having menu management, but it does seem to work.
As an example, using the twentyten theme’s menu setup:
<div id="access" role="navigation"> <?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?> <div class="menu-header"> <ul class="menu"> <li class="menu-item"><?php wp_loginout(); ?></li> </ul> </div> </div><!-- #access -->Ideally, there should simply be a way to include dynamic links like wp_register and wp_loginout in the menu management.
Forum: Alpha/Beta/RC
In reply to: Using template tags in the new menu managerI thought about doing that, but the issue is that then it will continue to list as “Register” (or whatever else I decide to name it), instead of changing the link automatically depending on whether you are logged in or not.
I’ve experimented with erasing the “http://” starting text in the “Custom Links” section and adding the template tag that way, but it still tries to treat it as a link rather than a tag (and re-adds the http://).
What’s the point of having dynamic links if we can’t use them in menus?
Forum: Fixing WordPress
In reply to: Error opening page … after using WP Prefix Table ChangerOkay, looks like it’s the code injection problem linked here, and I was just hit before I upgraded and didn’t know. When I pulled the backups for offline testing, the injection came with me. Corrected now.
Forum: Fixing WordPress
In reply to: Error opening page … after using WP Prefix Table ChangerI’m running into the same problem. It’s also trying to contact cnzz.com. This is after upgrading to 2.3.2. It’s also worth noting: my site has never seen the internet: it’s still in design stages, so it’s being run locally only.