nico39
Forum Replies Created
-
Ok thanks
Yes version 1.8.2.1
Ok thanks
The lastest versionAnybody has an idea please?
Receive raw content email:
<html> <head> <style type="text/css">#outlook a { padding: 0; }</style> </head> <body> ?<br /> <br /> <style type=\"text/css\"><!--<br /> #outlook a { padding: 0; }<br /> --></style><br /> <div style=\"background: #fff;\"><br /> <div style=\"width: 620px; padding: 0 160px; margin: 0 auto 20px;\"><img style=\"margin: 15px 30px 0px; position: relative; z-index: 2;\" alt=\"\" src=\"https://www.mywebsite.fr/blog/wp-content/uploads/2013/10/logo.png\" /></div><br /> <div style=\"width: 620px; padding: 36px 160px 0; margin: 0 auto; background: url(\'https://www.mywebsite.fr/blog/wp-content/uploads/2013/10/gradient.gif\') no-repeat;\"><br /> <div id=\"edd-email-content\" style=\"position: relative; text-align: left;\"><br /> <div style=\"position: relative; z-index: 2;\"><br /> <br /> Bonjour Nicolas,<br /> <br /> Une commande vient d\'?atre pass??e sur le Blog Nicolas Logerot Photographie!<br /> <br /> Par le client suivant: test test <br /> <br /> Son nom utilisateur est: nolnn<br /> <br /> Son e-mail: [email protected]<br /> <br /> Son adresse: <br /> <br /> Son siteweb: Website<br /> <br /> ?<br /> <br /> Les articles achet??s sont list??s ci-dessous, avec tous les liens de t??l??chargement des fichiers.<br /> <br /> ?<br /> <br /> <ul><li>TEST?–?<br/><ul><li><a href="https://www.mywebsite.fr/blog/index.php?download_key=xxxxxxxxxxxxx.ezfzhn&file=0&price_id=0&download=909&expire=MTM4MjgzMjQzMg%3D%3D">portfolio</a></li></ul></li></ul><br /> <br /> ?<br /> <br /> Prix total : 0.00 EUR<br /> <br /> M??thode de paiement: manual<br /> <br /> Num??ro du ticket de caisse: e867a96b9a56b01a2597ad6d753a8c51<br /> <br /> La cl?? d\'activation (si besoin):<br /> <br /> N/A<br /> <br /> ?<br /> <br /> Date d\'achat: 24 octobre 2013<br /> <br /> ?<br /> <br /> </div><br /> </div><br /> </div><br /> <div style=\"width: 620px; padding: 36px 160px 0; margin: 0 auto; background: url(\'https://www.mywebsite.fr/blog/wp-content/uploads/2013/10/gradient.gif\') no-repeat;\"></div><br /> </div> </body> </html>
No extra slashes on the text view of the admin email editor, only added after sending.
See the code:
<style type="text/css"><!-- #outlook a { padding: 0; } --></style> <div style="background: #fff;"> <div style="width: 620px; padding: 0 160px; margin: 0 auto 20px;"><img style="margin: 15px 30px 0px; position: relative; z-index: 2;" alt="" src="https://www.mywebsite.fr/blog/wp-content/uploads/2013/10/logo_03.png" /></div> <div style="width: 620px; padding: 36px 160px 0; margin: 0 auto; background: url('https://www.mywebsite.fr/blog/wp-content/uploads/2013/10/gradient.gif') no-repeat;"> <div id="edd-email-content" style="position: relative; text-align: left;"> <div style="position: relative; z-index: 2;">Bonjour, Une commande vient d'être passée sur le Blog Par le client suivant: {name} {fullname} Son nom utilisateur est: {username} Son e-mail: {user_email} Son adresse: {billing_address} Son siteweb: {sitename} Les articles achetés sont listés ci-dessous, avec tous les liens de téléchargement des fichiers. {download_list} Prix total : {price} Méthode de paiement: {payment_method} Numéro du ticket de caisse: {receipt_id} La clé d'activation (si besoin): N/A Date d'achat: {date}</div> </div> </div> <div style="width: 620px; padding: 36px 160px 0; margin: 0 auto; background: url('https://www.mywebsite.fr/blog/wp-content/uploads/2013/10/gradient.gif') no-repeat;"></div> </div>
No problem with option “send mail test”, all images here, but no images when it’s an offical purchse notification admin mail
No email problem is… another problem, this thread is solved…
Thanks you very much your help Williamson
hoooo! in recept mail, all the link have an \ before the link when I open the raw content of mail, but in backend admin mail seeting there not the \ and all images are displayed correctly.
example:
src=\”https://www.mysiteweb.com/wp-content/uploads/2013/10/logo.png\”Forwhat?
and I got the email overview not contain images, ok I let fall!
Mr Williamson, can you please help me with this code, the slideshow doesn’t work now! it’s out of my competences!
It seem, if I remove this line:
if (this.value === title && $input.hasClass(blurClass)) {then the slideshow work, but the error message reappearing…
I do not know what to do …Yes but the slideshow on home page don’t work now!
I hope it can help someone in the same situation as me!
just small improvement.
With the above code, the text of the e-mail field does not disappear when clicking in the box and wrote your email.The code that works is this:
/**
* @author Remy Sharp
* @url https://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/
*
* better val() method added by Matt Chisholm, 2009/07/27
* https://glyphobet.net/blog/essay/878
*/(function ($) {
$.fn.hint = function (blurClass) {
if (!blurClass) {
blurClass = ‘blur’;
}return this.each(function () {
// get jQuery version of ‘this’
var $input = $(this),// capture the rest of the variable to allow for reuse
title = $input.attr(‘title’),
$form = $(this.form),
$win = $(window);function remove() {
if (this.value === title && $input.hasClass(blurClass)) {
if ($input.val() === title && $input.hasClass(blurClass)) {
$input.val(”).removeClass(blurClass);}
}// only apply logic if the element has the attribute
if (title) {
// on blur, set value to title attr if text is blank
$input.blur(function () {
if (this.value === ”) {
$input.val(title).addClass(blurClass);
}
}).focus(remove).blur(); // now change all inputs to title// clear the pre-defined text when form is submitted
$form.bind(“submit”,remove);
$form.submit(remove);
$win.unload(remove); // handles Firefox’s autocomplete
}});
};$.fn.realval = $.fn.val;
$.fn.val = function (value) {
var i = $(this);
if (value === undefined) {
return (i.realval() === i.attr(‘title’)) ? ” : i.realval();
} else {
return i.realval(value);
}
}})(jQuery);
I’ve found a fix for that file who can create error, you can find description here:
https://blog.glyphobet.net/essay/878Replace all “hint.js” content by this:
/**
* @author Remy Sharp
* @url https://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/
*
* better val() method added by Matt Chisholm, 2009/07/27
* https://glyphobet.net/blog/essay/878
*/(function ($) {
$.fn.hint = function (blurClass) {
if (!blurClass) {
blurClass = ‘blur’;
}return this.each(function () {
// get jQuery version of ‘this’
var $input = $(this),// capture the rest of the variable to allow for reuse
title = $input.attr(‘title’),
$form = $(this.form),
$win = $(window);function remove() {
if ($input.realval() === title && $input.hasClass(blurClass)) {
$input.val(”).removeClass(blurClass);
}
}// only apply logic if the element has the attribute
if (title) {
// on blur, set value to title attr if text is blank
$input.blur(function () {
if (this.value === ”) {
$input.val(title).addClass(blurClass);
}
}).focus(remove).blur(); // now change all inputs to title// clear the pre-defined text when form is submitted
$form.submit(remove);
$win.unload(remove); // handles Firefox’s autocomplete
}
});
};$.fn.realval = $.fn.val;
$.fn.val = function (value) {
var i = $(this);
if (value === undefined) {
return (i.realval() === i.attr(‘title’)) ? ” : i.realval();
} else {
return i.realval(value);
}
}})(jQuery);