Leo Newball
Forum Replies Created
-
Hey Barry,
I can confirm that caching (including turning off object cashing) are in use, and when all plugins are deactivated, reverting to a default unmodified theme does not resolve this at all.
It’s good to know that this was reported, and I’m not the only crazy here ??
Forum: Themes and Templates
In reply to: tabula rosa theme help!Hi Ashley, there is a pending fix coming (along with updates for 3.4) – the one fix I’m employing changes the header almost entirely.
The best solution I’ve found has been to make the header not static in the css code. (It’s part of a solution I’m employing for the theme).
Forum: Themes and Templates
In reply to: tabula rosa theme help!I can defiantly help (apologize for the delay in responding, I’m seeing this post for the first time now).
- Those are breadcrumbs, in order to remove them, in the header.php file, you would need to remove lines 63 – 98, which look like this.
[code over the forum limit of 10 lines moderated - please see forum guidelines]
- I'm wondering if this is a screen size issue. The content, should never ever scroll over the left column. As for the header, there's a bit of a CSS issue with that, a fix is coming, however, the content may possibly scroll over it from time to some.
- Page width is set within style.css, which is determined by #right-col on line 372
- There's a reason, why, oh why! the left column only lists your pages (bio/work/contact/etc) on the left and then home when you're not on that page. These are the following reasons:
- The menu was created so that if you didn't use the integrated custom menu function of the theme, it would dynamically list the pages that appear on the website for you. This is why, in your case, bio/work/contact displays without having to produce any code or other alterations
- The menu was also created so that, if, you're on the home page, there's no need to display that item, because you're on the home page. It's a logic that I implemented into this theme, because I felt it was redundant to say "home" when you're home. When you move away from the home page, the home page menu item appears at the top of the page, again like magic. Do <b>note</b> this only happens when you haven't used the integrated custom menu function of the theme
- The theme was created with a integrated custom menu function which you can find in the Appearances section of the WordPress dashboard. Here, you're able to set your own menu and format however you deem fit. This will override the default way the menu interacts with the theme, and is one of two ways that you can format the theme to your liking.
- Lastly, if you don't ever, want to see home, on your homepage, you can easily head over to the functions.php file and remove lines 81 - 83, which look like the following:
<?php if (!is_home() || !is_front_page()) : ?> <li class="page_item"><a href="<?php echo home_url(); ?>">Home</a></li> <?php endif; ?>
- Lastly, the reason this happens, is because I sprinkled some magic into the theme, so magically you can head home anytime you want ??
I hope this helps and hopefully solves some of your issues!
Problem solved – it was caused by my own theme, calling Fancybox in the admin area. JavaScript collided with each other. Updating and fixing on my end.
Fresh multisite, upgrade was from 3.1 MU to 3.1.1 MU.
Yes, I should have also added I’m also on a WordPress MU setup.
Forgive me for failing to mention that the first round. (Meep!)
Forum: Fixing WordPress
In reply to: Secondary wp_nav_menu repeating firstWhat you mention (about the same menu contents for each menu) is the issue I’m having. Supposedly I don’t have to declare the menu name if I’m using
theme_location=> 'location-defined-in-register_nav_menus'
so, in theory, I should be able to swap out each menu without having to declare the menu name inwp_nav_menu( array('menu' => '[name here]' ))
Your tip with removing add_action(); and calling the function directly seems to work however! Thanks Decavolt!
- Those are breadcrumbs, in order to remove them, in the header.php file, you would need to remove lines 63 – 98, which look like this.