413Critter
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Plugins
In reply to: [WC Fields Factory] PHP Waring is error log@jeroendg – same thing here..
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Admin cannot access optionsAye. It works via the woocommerce menu. Thanks
Forum: Fixing WordPress
In reply to: Scheduled Spam Posts keep appearingI think I might have an easier way to find the rogue file.
I modified the previous filter to email me the
$_SERVER['HTTP_REFERER']Hopefully that will lead me to the file
Forum: Fixing WordPress
In reply to: Scheduled Spam Posts keep appearingOh, I definitely agree. It is not a long term solution, but it will help keep things afloat while I am hunting this file down…
thanks for your replies..
Forum: Fixing WordPress
In reply to: Scheduled Spam Posts keep appearingAye thanks for those links.
I’ve still not been able to locate the file, but it looks like I’ve been able to stop the posts with:
add_filter( 'wp_insert_post_data', 'post_publish_filter_wpse_82356' ); function post_publish_filter_wpse_82356( $data ) { // view/manipulate $data if ('post' == $data['post_type'] ) { $msg = '<pre>' . var_export($data, true) . '</pre>'; wp_die($msg); } return $data; }fixed it.
in the plugin directory. ‘accordion.js’
if you add heightStyle:’content’
so that it looks like this:
jQuery(document).ready(function($) { jQuery("#accordion").accordion({autoHeight: false, collapsible: true, active: false,heightStyle:'content'}).css("height","auto"); })();it will fix the issue.
nope not going crazy. same thing is happening to me.
Viewing 7 replies - 1 through 7 (of 7 total)