crmb
Forum Replies Created
-
Hello,
I think i also have a problem.
I used the “keep ‘p’, ‘br’ tags” on one of my site to be able to make several newlines without creating new p tagsFor exemple, (with newline, shift+enter)
this is test
the editor would show (like intended) :
<p>this<br/> <br/> is<br/> test</p>
‘the_content’ was also show the same.
But now ‘the_content’ is :
<p>this</p> <p>is<br /> test</p>
the double ‘br’ are not kept anymore. A new ‘p’ is started
Hello
Its working for me (is use smtp mode, not api) with WP 4.5 / PHP 7
I am not sure this is related. It sound like a bbPress issue.
You don’t have the same messages when disabling/activating any other of your plugins ?
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] PHP7 CompatibilityIt works without problems for me
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Plugin not workingYou should be able to get some info (discussion between plugin and smtp) on the messages log page :
/wp-admin/tools.php?page=postman_email_log
with the “transcript” link.It only say “timeout..” ?
If it works with others plugins on the same smtp, maybe you can try using another port : 25 instead 587 and vice versa.
Thanks.
I didn’t checked that you where using the built in add_post_meta functions.
I just have been looking at “serialize vs json” discussions in wordpress core but it seems it is not going to change. (not sure if this is for legacy compatibility or speed reason).
Forum: Plugins
In reply to: [WPThumb] Does this still work?Yes it still works for me.
WP 4.3.1 & PHP7.0~RC7Note that there is no Settings page. The plugin only show up in the plugins list.
Forum: Plugins
In reply to: [Imsanity] Quality of 100 actually increases filesizeMaybe you should add a 95% option ?
I think 95% in wordpress (when i use add_filter( ‘jpeg_quality’..) is like 80 in photoshop. It is a good setting.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Hidding icon from post editorThanks !
It should be an optionForum: Plugins
In reply to: [WPThumb] Fatal ErrorNo issues with WP 4 for me (PHP 5.5)
Forum: Plugins
In reply to: [Facebook Publish] How to post on a facebook page ?Thank you !
Forum: Hacks
In reply to: remove autop from wp_richedit_pre filtersorry i didn’t make myself clear.
Actually my question was how to overwrite functions of core files without modifying core file
Is it actually possible ?Forum: Hacks
In reply to: remove autop from wp_richedit_pre filterActually just removing this line from wpautop function (formatting.php) may be enough
$pee = preg_replace('|<br />\s*<br />|', "\n\n", $pee);
Then, no need to remove wpautop
But of course i don’t want to edit core filesForum: Plugins
In reply to: [Advanced Editor Tools] Stop removing BR not working with WP 3.5?Actually just removing this line from wpautop function (formatting.php) may be enough
$pee = preg_replace('|<br />\s*<br />|', "\n\n", $pee);
Then, no need to remove wpautop
But of course i don’t want to edit core filesForum: Plugins
In reply to: [Advanced Editor Tools] Stop removing BR not working with WP 3.5?I have the same problem with 3.6
I found out that the admin editor apply the “autop” formating while retrieving post_content from the database, so the multiple (saved in the database) “br” are removed (and replaced by p) when post is reloaded in the editor
class-wp-editor.php (110) :
add_filter('the_editor_content', 'wp_richedit_pre');
formatting.php in wp_richedit_pre function (2539) :
$output = wpautop($output);
i think solution would be to remove the above line in formatting.php
(And don’t forget to add
remove_filter( 'the_content', 'wpautop' );
in your template)