brackishwaters
Forum Replies Created
-
I ended up just hiding these errors though I would rather have found a remove solution instead. Here is the code I added to wp-config to handle this error output:
@ini_set('log_errors','On'); @ini_set('display_errors','Off'); @ini_set('error_reporting', 4339 ); //only log errors you will want to know about define('WP_DEBUG', false); define('WP_DEBUG_LOG', false); define('WP_DEBUG_DISPLAY', false);Forum: Plugins
In reply to: [The Events Calendar] "All Day Event" Bug in WP3.2 [with Solution]First – r3volution11, Thank you for the fix there as it was a solid solution.
Some notes:- You must make sure that you are using the 1.6.2 version of jquery when using this fix or else it will not work
- The checked/unchecked issue with all day events still shows up. One hack for this is go to line 969 of the-events-calendar.class.php and change the ‘checked’ to ‘unchecked’.
- If you still see the 4 day input bug, make sure you are using jquery version 1.6.2.
Hope that helps.
Forum: Fixing WordPress
In reply to: Able to list all users from wp_users, now how to filter by usermeta?Mark,
Thank you very much for the code snippet. That solved the issue and gave me enough to know where I went wrong.
I had no idea of that function! If I had known this function last week, it could have saved me a ton of effort. Odd as I searched and searched here at ww.wp.xz.cn but something like that never came up or I missed it.
Its great to see that now as I know I will be using this in the future.
Again, Thank You
Forum: Plugins
In reply to: Using a dynamic include within a pageDoes anyone know if this is a security risk?
Forum: Plugins
In reply to: Contact Form 7Did you check the html within the post where you coded the contact page? I know contact form 7 uses only some very small text to inject the form within the page so it is easy to see if the code has been added more than once.