academiphiliac
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: you tube to blog!You might want to check out some of the video plugins available.
Forum: Themes and Templates
In reply to: Divving up the comments.“There is a crapload of css involved, and my tired eyes can’t seem to pinpoint the problems…”
Since you’re code weary, I recommend you use css shorthand wherever possible.
For example, you’ll want to change this:
#wp_wrap { width: 100%; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; }
into this:
#wp_wrap { width: 100%; margin: 0; padding: 0; }
Maybe then you’ll have an easier time finding the problem.
Forum: Themes and Templates
In reply to: Divving up the comments.I’m not sure if I know exactly what you want where, but I can tell you probably want the date centered over the post, so let me solve that problem before I have to turn in tonight.
- Find this in your css file:
.post_date { float: left; height: 50px; width: 354px; margin-left: 16px; margin-top: 2px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; }
- Delete this:
float: left;
and see if that works for you.
I know it works in my Firefox, but I’m not sure about other browsers (e.g. IE).
Forum: Fixing WordPress
In reply to: More than one post per page?Just to be sure, did you check out WordPress MU?
Forum: Fixing WordPress
In reply to: Help with REALLY DUMB SIMPLE html codeYou’re just missing a quotation mark.
This:
<meta http-equiv=”Content-Type” content=”text/html; charset=iso8859-1 />
Should be:
<meta http-equiv=”Content-Type” content=”text/html; charset=iso8859-1″ />
Forum: Installing WordPress
In reply to: Is there an easier way?The plug-in worked for me, mostly.
Only problem: all the download links, like the one you click to get the zipped copy of your database backup, are broken.
Reason: the plug-in seems to assume that your WordPress URL and your Blog URL are the same.
I’m looking at the code to see if I can find some kind of ‘site_URL’ global variable. It should only need one tiny change, I think.
Forum: Installing WordPress
In reply to: Is there an easier way?Here’s a new upgrade plug-in I just found. I have to upgrade myself, so I’m going to give it a try and let you know how it went.
Forum: Everything else WordPress
In reply to: WordPress 2.2.1I have the same problem as ingaoz.
Forum: Fixing WordPress
In reply to: Upgrade now getting Warning: Missing argument 2 for translate() ??Just to clarify, here’s the (temporary) solution for this issue:
- Login to your blog as administrator
- Go to Manage > Files
- Search for code that looks like this:
<?php translate(2); ?>
It is most likely in one of the following files: Header, Page Template, Sidebar, or Footer.
If you still can’t find it, try searching for:<?php translate(1); ?>
- Comment out the code, like this:
<!--<?php translate(2); ?> **Commented out: WP-Translate plug-in causes php warning.**-->
Note: This problem may occur for anyone who has used WP-Translate or one of its derivatives, like Robs Translator.
Forum: Fixing WordPress
In reply to: Upgrade now getting Warning: Missing argument 2 for translate() ??Nice, pearce!
That’s exactly what it was. WP-translate is somehow broken. Thanks.
I’ll go look at the plug-in files and see if I can find anything.
Forum: Fixing WordPress
In reply to: Upgrade now getting Warning: Missing argument 2 for translate() ??Investigation continued…
The warning still appears on my blog’s mainpage after I turned all plugins off.
I didn’t find “translate(” anywhere else but in wp-includes/gettext.php, and in that file, the function is completely different: with one argument translate($string).
Still stumped.
Forum: Fixing WordPress
In reply to: Upgrade now getting Warning: Missing argument 2 for translate() ??I’ve got this one too. Something is calling the translate() function in the wp-includes/l10n.php file, but isn’t passing is an argument for $default.
The problem does not seem to be in the wp-includes/l10n.php file. There are a few wrapper functions which call translate(), but all of them seem to have two appropriate arguments.
Does anyone know where translate() might be elsewhere in the wordpress files?
Forum: Plugins
In reply to: PHP Coder Needed for HireMy apologies for making the request. Thanks, HandySolo.
Forum: Plugins
In reply to: PHP Coder Needed for HireLet us know how we should get in touch with you.
Forum: Themes and Templates
In reply to: Theme Suggestion for a DayCare WebSiteI’m going to assume that you want something colorful and comforting, but not nauseating to the grownups who will actually use the site.
I hope you’re already familiar with the Theme Directory. If not, check it out, and be playful. Themes are pretty easy to change.
I’ve been pretty happy using Almost Spring. Give it a try.
- Find this in your css file: