waitman
Forum Replies Created
-
probably good idea to disable and delete? i noticed a client site links in the slider were changed to pages on erzhong988 dot com.. somehow.. but no other problems i noticed. anyway there are plenty of better slide plugins.
Forum: Fixing WordPress
In reply to: post blank – max size issue?it’s this line that’s wiping out the entire content string.
(formatting.php line 71)
$pee = preg_replace('/\n?(.+?)(?:\n\s*\n|\z)/s', "$1\n", $pee); // make paragraphs, including one at the endcommenting that line out fixes the problem. All the posts now appear.
I’m tired, going to bed.
*** Clearly this is causing a problem but it’s for the devs to look at, I’m not strong enough with regexp’s to see the problem right off the bat, it would ‘prolly take me hours and I don’t have that tonight.
Forum: Fixing WordPress
In reply to: post blank – max size issue?still working on this. it’s definitely happening in function wpautop, in formatting.php
Forum: Fixing WordPress
In reply to: post blank – max size issue?it’s happening in apply_filters. if i return $string at the beginning of the function so it does nothing, the full post appears but it’s sort of run together.
if i check $string to see if it’s an array, then print ‘
',print_r($string),'
‘ – the full post text appears twice within the array (it’s being sent to this function twice for some reason before the content.
using this method, it shows
Array ()
(empty array) when the post is supposed to appear… (um, that’s probably why it’s blank)
trying to figure out what’s going on… any idears?
🙂