Alexander Rauscha
Forum Replies Created
-
Hi !
I guess you use the wordpress Menu feature ?You can fix the labels at
Appearance > Menus
klick on the menu item on the right and change the Navigation Label from Kontakt to
<span class="en">Contact</span><span class="de">Kontakt</span><span class="sv">KONTAKT</span>Do that all with your menu items.
THe Heading is messed up because your template is using
the_title();inside the title Attribute of the wrapping a tag. You can delete this in your template or changethe_title();to<?php $title = the_title('','',false); preg_match('/<span>(.*)<\/span>/', $title, $m); echo strip_tags($m[0]); ?>Thats the only solution im aware of right now. :/
Forum: Plugins
In reply to: [mLanguage] mLanguage breaks page/post editorHi Chris
I guess you are using the latest versons of both, wp and mlanguage?
Are there any Editor Plugins running, and what browser do you use ?
Alex
Forum: Plugins
In reply to: [mLanguage] [Plugin: mLanguage] set language from urlcheck mlanguage.php line 83
add
$s = $_GET[your_param];after
if($_COOKIE["WPmlang"]) $s = substr($_COOKIE["WPmlang"], 0, 2);and delete the cookie code in mlanguge.js on line 53 + 54
Forum: Plugins
In reply to: [mLanguage] [Plugin: mLanguage] Problem with menu of site and title of pageHi,
sry i haven’t seen this post earlier.This isn’t really a bug, when you use strip_tags it will strip out all html tags which i need to hide the other languages. But if you want to use
<?php the_title(); ?>in the title attribute, i would suggest you using this:<?php $title = the_title('','',false); preg_match('/<span>(.*)<\/span>/', $title, $m); echo strip_tags($m[0]); ?>@sofiamotettkor
Thanks, i already know that page menu bug, but sadly i have no idea how to fix this in a proper way. I will keep up trying to fix it 😉-<o.o>-