thank you for the great plugin. it's just what i was looking for.
my problem is: I can't see the e-mail-text in the main-body-box (it's there, but I have to mark it to see it), and I don't have (or see) a html-switch. did anybody else had a problem like this?
greetings, werner
I can't see the e-mail-text in the main-body-box
(8 posts) (3 voices)-
Posted 4 months ago #
-
which WP version are you using?
when you write a standard WP post does the editor work well?Posted 4 months ago # -
I am using version 2.8.6. and the standard post editor works well.
Posted 4 months ago # -
Mmm, I don't know... Maybe some other installed plugins may affect the editor?
Posted 4 months ago # -
This is possible. I will deacticate the plugins and let you know.
Posted 4 months ago # -
I really love the easymail plugin, but I have the same problem where the editor window is not there. I deactivated the qtranslate plugin and the editor reappeared, but I can't disable qtranslate, need it for my site. Is there a way to make them work together??
Posted 1 month ago # -
I love qtranslate too, but I saw the problem about the 2 plugins and the visual editor... For the moment I suggest you to prepare your html content before (eg. the standard wp add-a-new-post page) and then paste the code into the editor box.
For the future I'm thinking about an easymail multilingual feature, to work with or without other multilingual plugins.Posted 1 month ago # -
I found a hack to disable the qTranslate editor for EasyMail.
Open the qtranslate_wphacks.php file in your qtranslate directory and search the qtrans_modifyRichEditor function declaration (line 60 more or less):function qtrans_modifyRichEditor($old_content) { global $q_config; $init_editor = true; if($GLOBALS['wp_version'] != QT_SUPPORTED_WP_VERSION) { ...you have to add a line to exclude EasyMail send page, so:
function qtrans_modifyRichEditor($old_content) { global $q_config; $init_editor = true; if( isset($_GET['page']) && $_GET['page']=='alo-easymail/alo-easymail_main.php' ) $init_editor = false; if($GLOBALS['wp_version'] != QT_SUPPORTED_WP_VERSION) { ...The original guide is here.
Posted 1 month ago #
Reply
You must log in to post.