rooodini
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 3.0 upgrade static page not workingHi Henry,
In order to induce the behaviour you’re describing, you would also need to set “Blog” to be your blog’s Posts Page.
It’s important to note the distinction betweenhome.phpandfront-page.php. Thefront-page.phptemplate will be called for the front page of the blog, whether that is a static page or a posts page.home.phpwill never be called for a static page. It is for your blog’s Posts Page, which may or may not be the front page.
I think the behaviour makes sense, but perhaps the namehome.phpis a bit misleading.
Again though, the template hierarchy is a useful reference document. Particularly this bit.
AndyForum: Fixing WordPress
In reply to: WordPress 3.0 upgrade static page not workingHenry – You’re describing a wordpress feature, not a bug. I mean this in the sense that home.php is documented as a reserved name for a template file. See the template hierarchy.
Forum: Fixing WordPress
In reply to: Fatal Error on bottom of page…Hi Paul,
Looks like you’ve pasted this file:
/hermes/web10/b282/moo.abundant1/wp-content/themes/tomorrow/style.cssWe need this file:
/hermes/web10/b282/moo.abundant1/wp-content/themes/tomorrow/page.phpCheers,
AndyForum: Plugins
In reply to: [Plugin: WP-FacebookConnect] Firefox 3.0.11 logs me out instantly(I’m testing with firefox 3.0.14)
Forum: Plugins
In reply to: [Plugin: WP-FacebookConnect] Firefox 3.0.11 logs me out instantlyI have the same problem. Anyone got a solution / Can direct me to a useful thread?
Thanks,
AndyForum: Fixing WordPress
In reply to: Website Works in everything But IE[BTW… I guess perhaps an old version of the page was still cached, and that’s why the corrections to home.php weren’t showing up. If that was the problem, it’s a good tip to disable caching while you’re still developing a site.]
Forum: Fixing WordPress
In reply to: Website Works in everything But IEAll working!
Looks brilliant, nice one 🙂Forum: Fixing WordPress
In reply to: Fatal Error on bottom of page…I can’t access the pastebin either. Maybe try posting it here again – I don’t see another alternative.
Maybe when you do so, just add into the post a request that the moderators do not delete the code or at least offer a working alternative where the code can be viewed.
Moderators – Is this ok?
Forum: Fixing WordPress
In reply to: Website Works in everything But IE…the closing tags I’ve added in are:
</div> <!-- .entry-content --> </div> <!-- .post -->Forum: Fixing WordPress
In reply to: Website Works in everything But IEWow, looks great! Good job.
Yep – You’re missing those closing divs in your home.php . Check my code above.
Regards,
AndyForum: Fixing WordPress
In reply to: Fatal Error on bottom of page…Hi there,
MindBlender3D – Here’s the error message Paul was getting:
Fatal error: Call to undefined function wp_footer_ejunkie() in /hermes/web10/b282/moo.abundant1/wp-content/themes/tomorrow/page.php on line 111This suggests the problem is in the
page.phpfile. I’m surprised this file apparently has css on line 111, though, so you’re right to be trying to figure this out.Paul – Your posts have been moderated to remove the code – Sorry, I wasn’t aware of the forum rules on this. I think you’re supposed to use this site: http://wordpress.pastebin.ca/ instead, then paste a link here.
Regards,
AndyForum: Requests and Feedback
In reply to: pages can’t be made subpages of a page that isn’t publishedOr even Trac Ticket 12890.
Forum: Requests and Feedback
In reply to: Page parent breaks if parent is scheduledI agree.
Please refer to this trac ticket.
Forum: Fixing WordPress
In reply to: Fatal Error on bottom of page…Hmm – that’s still css. It does have footer in it though.
There should be a line that looks exactly like this:
<!-- FOOTER -->Maybe you can search for that text?
Forum: Fixing WordPress
In reply to: Set draft page as parentYou can work around it by temporarily publishing a page, setting it as parent, then making it draft again.
This only works because wordpress doesn’t immediately reset the page parents for child pages. The next time these child pages are updated, their page parents are reset.
Probably makes sense to do it that way. Otherwise, if you set a root page to draft you would immediately lose all of your page hierarchy. Not to mention it could involve quite a lot of processing all at once (recursing through the tree of pages).