egostripper
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Installing WordPress
In reply to: define (‘WPLANG’, ‘nl_NL’); doesn’t workSolution:
Find gettext.php in wp-includes. Replace this part
if ($magic == ($MAGIC1 & 0xFFFFFFFF)) { // to make sure it works for 64-bit platforms $this->BYTEORDER = 0; } elseif ($magic == ($MAGIC2 & 0xFFFFFFFF)) {with this:
if ($magic == $MAGIC1) { $this->BYTEORDER = 0; } elseif ($magic == $MAGIC2) {Forum: Installing WordPress
In reply to: define (‘WPLANG’, ‘nl_NL’); doesn’t workAfter a tip I tried to put the nl_NL.mo file on two different locations.
http://www.dolleboel.net/wp/wp-includes/languages/nl_NL.mo
http://www.dolleboel.net/wp/wp-content/languages/nl_NL.moBut there is nothing changed;
The admin area is still in English.The point is, I’ve changed for another site of mine lot’s of php files. But when a new WordPress version is coming out I’ve got another problem, because all my files will be overwritten and I must do it all again.
So I hope there is a way I can fix this problem :S
Forum: Themes and Templates
In reply to: <em> doesn’t show in cursive (Mandigo theme)Found it:
if ($fb) { require($wpconfig); $mandigo_em_italics = get_option('mandigo_em_italics'); ______________ em { <?php if ($mandigo_em_italics): ?> font-style: italic; font-weight: normal; <?php else: ?> font-style: normal; font-weight: bold; <?php endif; ?> }I changed this to:
em { <?php if ($mandigo_em_italics): ?> font-style: italic; font-weight: normal; <?php else: ?> font-style: italic; font-weight: normal; <?php endif; ?> }I can probably make this code more cleaner, but I’m no php/css wizz. So I’m glad it worked!
Viewing 3 replies - 1 through 3 (of 3 total)