Ms_G
Forum Replies Created
-
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] [Plugin: Lightbox Plus] iPhone issuesHi,
I fixed the scrolling issue by adding the following CSS to the parent elements that hold the iframe:
#cboxLoadedContent, #cboxContent{ -webkit-overflow-scrolling: touch!important; }
Forum: Plugins
In reply to: [Plugin: Custom Contact Forms] problem with special charactersHi Taylor,
Thanks for replying, I figured out the problem ??
I’m using the latest version, and yes the tables are UTF-8 but not the email that is sent.
This Plugin uses the default PHP mailer that comes with WordPress, so that’s why I couldn’t find the character encoding within the plugin’s files.
I went to wp-includes/class.phpmailer.php on line 50 change
var $CharSet = ‘iso-8859-1’;
to
var $CharSet = ‘utf-8’;
After doing this the emails were be encoded utf-8.
Thanks!!!
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] Charcter EncodingI figured out ??
This Plugin uses the default PHP mailer that comes with WordPress, so that’s why I couldn’t find the character encoding within the plugin’s files.
If you go to wp-includes/class.phpmailer.php on line 50 change
var $CharSet = ‘iso-8859-1’;
to
var $CharSet = ‘utf-8’;
After doing this the emails will be encoded utf-8.
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] Charcter EncodingI really want to use this amazing plugin so I’m trying to find a solution to my problem. I know that you can define in PHP the Character encoding with:
header(‘Content-Type: text/html; charset=utf-8’);
Other contact forms plugins define the character encoding like this:
$header .= ‘Content-type: text/html; charset=’. get_option(‘blog_charset’) . $php_eol;
or
$header .= ‘Content-Type: text/html; charset=utf-8’;
However in the Custom Contact Forms plugin I can’t find anywhere the character encoding. I know some PHP but this is beyond my knowledge.
Can you please help me find where and how I can define the Character encoding?
Thanks!
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] Charcter EncodingI have the same problem.
I’m using Version 4.0.6, but when I check the message’s “raw source” they have the following code:
–b1_740ede90b9cae4b43e0c0d0170a41c5c
Content-Type: text/html; charset = “iso-8859-1”
Content-Transfer-Encoding: 8bitI have Spanish special characters and they are displayed like this:
????? ?3?o???????±???oCan anyone please help?
Thanks!