All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ericwatkins

Pages: [1]
1
WP-EMail / Re: Remove jquery -
« on: 16 July 2010, 16:18 »
To remove jQuery from WordPress just put this in your functions.php file:

if (!is_admin()) {
        wp_deregister_script('jquery');
}

However, the best way to deactivate jQuery and register your own is to use a function like this:

function redefine_jquery() {
    if (!is_admin()) {
        wp_deregister_script('jquery');
        wp_register_script('jquery', ''.get_bloginfo('template_url').'/js/jquery.js"', false, '1.4.2');
        wp_enqueue_script('jquery');
    }
}

just make sure that it points to the actual path of your jquery file...

2
WP-EMail / 404 Page with WP 3.0 Custom Post Types
« on: 09 July 2010, 18:42 »
So I've been playing around with WP-Email and custom post types in WP 3.0. The problem I have been finding is that everything still works fine when using the email links on normal blog posts and pages, but when using the email links on custom post types it gives a 404 page.

Has anyone found a work around for this yet? I have only sat down and really tried to hack this out for about 15 minutes, but it seems like it is in either wp_rewrite() or email_link(). Like a lot of other plugins, it just seems that the support for custom post types needs to be implemented.

So if anyone else has already worked this out, the help is appreciated. If not, maybe we can all figure it out so everyone can get it fixed up. Thanks all.

Pages: [1]