rorybe
Forum Replies Created
-
For anyone who stumbles upon this through search:
Problem was unrelated to the Relevanssi plugin as far as I can tell, however I solved it using info gleaned from here.
Try to drop that in your functions.php file:
function filter_query_for_search( $query ) { if ( isset( $query['s'] ) ) { $query['post_type'] = array('forum', 'topic', 'reply', 'any'); } return $query; } add_filter('request', 'filter_query_for_search', 1);I’ve definitely got the latest version installed of both WordPress and Relevanssi.
Just tried disabling the plugin entirely, and I’m having the same problem with and without Relevanssi (though without the nice results, obviously)—so it’s obviously something with WordPress itself or my theme.
Thanks for your reply, will see if I can figure out where the problem is.
Forum: Fixing WordPress
In reply to: Mysterious invisible ads injected into pagesThanks for that, I didn’t think of just trying another theme, but I have at least now established that that’s not the problem either (am getting the same problem with a clean default theme).
The problem doesn’t exist in the php itself, so much be getting added at some point when the server renders the page.
Will keep searching, and will update with anything I discover.
Forum: Fixing WordPress
In reply to: Mysterious invisible ads injected into pagesThe theme is Futurosity Aeterno (no longer updated, as far as I can tell), but they seem to be fairly reputable designers.
As for version, have just updated from 2.9.1 to 2.9.2 (and don’t think I’ve ever run anything pre-2.8 on this site).
Have disabled all plugins, which didn’t have an effect.
What sort of vulnerability might allow something like this – something javascript-based, for example?