aaclayton
Forum Replies Created
-
Works brilliantly Jeff, thanks so very much!
Forum: Plugins
In reply to: [Sweet Captcha] SweetCaptcha broken since WP3.5Hey, sorry I wasn’t able to help you test out the beta version, but I appreciate you pushing through a fix so quickly. Going to check it out now.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] WP-Cron – heavy CPU consumption?Sorry to necro a resolved issue, but I’ve been noticing that wp_cron is really hogging things on my server and I feel like it’s probably a related issue. I don’t use BackWPUp, pretty sure the only thing that I have Cron’ed is Google Sitemap.
Not really certain how best to proceed, but this seemed like the most relevant thread.
It’s not a solution I’m proud of, but my initial fix was to hack the plugin core and remove the script and style registration.
Arne, I agree that W3TC is a great utility, I use it myself. However, automatic consolidation and minification isn’t a perfect substitute to having only one CSS and one JS file enqueued in the first place.
I had forgotten about this issue, in retrospect, I think my problem was I was attempting to wp_deregister_script() when I should have been using wp_dequeue_script().
I’m at work atm, so I can’t try this now…but:
wp_dequeue_script( ‘jquery’ );
wp_dequeue_scropt( ‘colorbox-wrapper’ );
wp_dequeue_script( ‘colorbox’ );should knock out the JS enqueues, while:
wp_dequeue_style( ‘colorbox-[theme]’ );
should kill off the css, you’ll need to replace [theme] with the correct handle for the colorbox theme you have selected in plugin options.
Mladen, let me know if this gives you any luck.
Forum: Plugins
In reply to: [bbPress Search Widget] [Plugin: bbPress Search Widget] Short CodesHi Dave,
This is somewhat related to the shortcode issue. Can you think of a way to embed the widget directly using php? I’ve got a mega dropdown menu area which shows a quick snapshot view of the bbpress forums, and I’d love to be able to add a search bar to the menu dropdown (which is not a widgetized area).Of course, if you cook up a shortcode, I could always do_shortcode(), but that’s a bit roundabout…
Thanks,
Andrew