morningmist
Forum Replies Created
-
Most likely yes. Is there a workaround for this?
Forum: Plugins
In reply to: [Sliced Invoices & Contact Form 7] Sliced Invoices – client_first_nameI am having this same problem.
Forum: Plugins
In reply to: [WP Customer Reviews] What to do if you lost your reviewsHow long until you think 3.0.2 will be out? Just wondering when I should look for it. Thank you btw for putting this up you saved my Reviews page. π
Forum: Hacks
In reply to: Warning: call_user_func_array() errors@pinkchick have you tried disabling the plugins one at a time?
You have a similar problem but you need to determine first what plugin is causing the problem.
Forum: Hacks
In reply to: Warning: call_user_func_array() errors@webdi I tried that too to be honest and it did not work.
Forum: Hacks
In reply to: Warning: call_user_func_array() errors@webdi A lot of searching and reading and trial and error. I tried a number of things and this was the only solution that worked.
Forum: Hacks
In reply to: Warning: call_user_func_array() errorsI finally figured it out. Turns out it was related to the plugin tinyMCE Advanced and I just needed to add the following code to my functions.php file. I added it to the bottom of the file just before the closing tag.
//css and jslibs function do_css() { wp_enqueue_style('thickbox'); } function do_jslibs() { wp_enqueue_script('editor'); wp_enqueue_script('thickbox'); add_action( 'admin_head', 'wp_tiny_mce' ); } add_action('admin_print_scripts', 'do_jslibs' ); add_action('admin_print_styles', 'do_css' );Just adding the solution just in case someone else ends up with the same error.
Forum: Plugins
In reply to: [Advanced Editor Tools] Warning: call_user_func_array() errorsI ended up figuring it out after all I needed to add the following code to my functions.php file. I just added it the bottom.
//css and jslibs function do_css() { wp_enqueue_style('thickbox'); } function do_jslibs() { wp_enqueue_script('editor'); wp_enqueue_script('thickbox'); add_action( 'admin_head', 'wp_tiny_mce' ); } add_action('admin_print_scripts', 'do_jslibs' ); add_action('admin_print_styles', 'do_css' );Forum: Hacks
In reply to: Warning: call_user_func_array() errorsHow do I find that file and how do I fix it?
Forum: Fixing WordPress
In reply to: WordPress site no longer sending emailsThank you for trying to help. I ended up calling our hosting company. We got nailed by some spammers around that time and because of that our emails were marked permanently as spam. Its fixed now. Thanks again.
Thank you π