iamchris
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site Hack questionThanks Jan appreciate the help on the direction! Think we can close this!
Forum: Plugins
In reply to: [qTranslate] How to use this plugin at Widget Title?<?php if(qtrans_getLanguage() == “en”)
echo (‘Thank You’);
else if(qtrans_getLanguage() == “GER”)
echo (‘Danke’);
?>Also make sure your language code matches that of the qtranslate plugin, this will be in
Settings > Lanuages > Languages Table > Select your language here ie Francais > Edit > Lanugage code . So if you have to translate french your code would be
<?php if(qtrans_getLanguage() == “en”)
echo (‘Thank You’);
else if(qtrans_getLanguage() == “fr”)
echo (‘merci’);
?>Make sure within the plugin you have English and French enabled under General settings!
Forum: Plugins
In reply to: [qTranslate] How to use this plugin at Widget Title?You can do this in your php file as a work around so ie…
<h1><?php
if( qtrans_getLanguage() == ‘en’ ){ ?>
Thank you
<?php }else { ?>
Danke
<?php } ?>
</h1>Place this were you have your title.
Or if via the widget do this in the title box
[:en]Thank you[:GER]Danke
Forum: Plugins
In reply to: [qTranslate] How to use this plugin at Widget Title?<?php
if( qtrans_getLanguage() == ‘en’ ){ ?>
Choose Language
<?php }else { ?>
Danke
<?php } ?>This may help! Put this inside your template if you want the option of two outputs!
Forum: Plugins
In reply to: [qTranslate] Editor!!!go here to see a fix if you have updated to wp 3.5
https://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=3831
Forum: Plugins
In reply to: [qTranslate] Plugin works under 3.5go here for help!
https://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=3831
It seems that minified jquery libs conflict with the feed. I have it up on my web site (I must say its such a brilliant little plugin, Martin hands down, great job) but like mentioned many times here it didn’t seem to co-corporate! This is not Martins fault or the plugins, its your site and other javascript librarys.
I read the above feeds and like Martin suggested, do a little debugging in order to find the problem, comment out javascript statements one by one to find the conflicting library. Once you diagnose the problem you should be able to work on a solution to the problem.
The problem in my site was was with
<script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js”>Im now working on finding a full library and not a minified library, I may also work back a few revisions!