Ben L.
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts overlapping…help!Chage the .post rule in your css stylesheet (.post starts on line 148) to:
.post { left:200px; padding:5px; position:relative; text-align:justify; top:70px; width:490px; }That should fix at least part of the problem.
Forum: Everything else WordPress
In reply to: WordPress 0.7, anyone have it?How about this link?
Nope, that only goes back to 0.71-gold.
Forum: Everything else WordPress
In reply to: WordPress 0.7, anyone have it?I’m not sure where you would find a copy. I suppose you could drop by Matt’s blog and ask him or drop him an email or something.
Also, WordPress used to be hosted on Sourceforge’s CVS system prior to using their own SVN system. You could always search the CVS archives over there although I have no idea what remnants may still be there. I’ve never actually looked myself.
To access the CVS you need a CVS client but I’m sure they have a link somewhere allowing you to look through a web interface. (browser)
Thanks! I found and downloaded it.
Edit: The copy I donwnloaded doesn’t work at all. Can anyone help me?
Forum: Installing WordPress
In reply to: Help to get software on my websiteDelete index.html
Forum: Plugins
In reply to: let visitors postYou should get an email whenever someone submits a post for review.
Forum: Themes and Templates
In reply to: Multilingual hemingway, sidebar on individual pages?<?php get_sidebar(); ?>There might need to be more code changes past that if your theme uses more complicated styles.
Forum: Fixing WordPress
In reply to: Help, I deleted my index.php, I think_vti_inf.html is used by Microsoft Frontpage, not WordPress. You can download a copy of the index.php page at http://trac.wordpress.org/browser/tags/2.0.11/index.php?format=raw
Forum: Plugins
In reply to: let visitors postYou would need to set the “New User Default Role” to “Contributor”. That’s all. Just click on the settings button on the admin pages.
Forum: Developing with WordPress
In reply to: Unwanted LoopWell, if you have everything that would be needed in page.php in test.php, you would want to change
<?php if ($page_name == "test") ?> <?php include (TEMPLATEPATH . '/test.php'); ?>to
<?php if ($page_name == "test") include (TEMPLATEPATH . '/test.php'); exit; ?>Forum: Fixing WordPress
In reply to: Says to install WP and then that tt’s already installedGo into your mysql database and go to the options table, change the siteurl option (it’s probably the first option there) back to what it should be.
What version of the subscribe2 plugin are you using?
Forum: Developing with WordPress
In reply to: any php pro out there? avatar problem!Remove the following:
$the_comment_ID = get_comment_ID(); if($the_comment_ID && $author_id == 0) { $the_author = $wpdb->get_var("SELECT user_ID FROM $wpdb->comments WHERE comment_ID='$the_comment_ID'"); } elseif(get_the_author_id() && $author_id == 0) $the_author = get_the_author_id(); else $the_author = $author_id;and replace it with the following:
get_currentuserinfo(); $the_author = $user_ID;Forum: Fixing WordPress
In reply to: How block these phantom pages from being indexed?Try putting
<?php if(is_404()) header('HTTP/1.1 404 Not Found'); ?>as the first thing in your theme’s header.php file. Google won’t index pages with 404 errors.Forum: Plugins
In reply to: WordPress ForumYou would be needing bbPress then.
Forum: Themes and Templates
In reply to: conditional IE stylesheetDid you try !important after the color declaration? For example,
background-color: #fff !important;