Georg Ludwig
Forum Replies Created
-
Same with me – no answer to this ticket from Yoast ?!
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] SPAM (WP_URI_HACKED) because of tr.phpSearch for ‘tr.php’. A variable is filled with the reference. Search the variable and prevent it from being added to the Output. Sorry for answering in short. I’m with my mobile.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Return-PathSolution in Link 1 does not work for me.
Solution in Link 2 is the same.So I stay with the patch in alo-easymail_functions.php – this one works 😉
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Return-PathThought I’d work like a charm – but it doesn’t….as You hook the action ‘phpmailer_init’ this code is called for WCF7 as well ….. even that was what I didn’t want to have 😉
So I placed it into the
if( $phpmailer->ContentType == 'text/html') {section – will work unless I’d send anything else via text/html – You should be aware of this also ! 😉
Regards and thx,
GeorgForum: Plugins
In reply to: [Transposh WordPress Translation] Phrases and Block to NOT translateHi,
in my Opinion this could be a simple solution as follows:
- In the settings section offer the ability to enter phrases that shall not be translated as a CSV-String.
Split the string into an array and use it with the sample code above to test on such phrases. -
You may also offer to enter char-combinations that enclose phrases not to be translated, e.g. “<>,[],«»” – could be used to parse with the code above.
The only problem is what I had: The « and » are held as unicode-character in my installation – perhaps You have a proper idea for that specific problem ?
Regards,
GeorgForum: Plugins
In reply to: [Transposh WordPress Translation] Traslation of URLsSmall correction – as the translation of images and so on should NOT be performed:
function(index, value) { if (value.toUpperCase().match (".JPG$") || value.toUpperCase().match (".PNG$")) { return value; } if (value.substr(0,1) == "/") { - In the settings section offer the ability to enter phrases that shall not be translated as a CSV-String.