Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Works brilliantly Jeff, thanks so very much!

    Thread Starter aaclayton

    (@aaclayton)

    Hey, 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.

    aaclayton

    (@aaclayton)

    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.

    Thread Starter aaclayton

    (@aaclayton)

    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.

    Hi 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

Viewing 5 replies - 1 through 5 (of 5 total)