• Resolved zestycoder

    (@zestycoder)


    Dear Chris,

    Thanks for your wonderful plugin. First all. I want to use your nice plugin alongside with Custom Field Template and Post Expirator plugin. However they seems not appear at Live Blogging New Entry. How can I get any of those plugins appear again? Secondly, grouping those entries is not easy atm.

    Thank you in advance!

    Zestycoding

Viewing 7 replies - 1 through 7 (of 7 total)
  • You’ll have to ask those plugin authors to support custom post types.

    What do you mean by grouping the entries?

    Thread Starter zestycoder

    (@zestycoder)

    Dear Chris,

    Thanks for your reply. for grouping means sorting the entries.

    Thanks

    Thread Starter zestycoder

    (@zestycoder)

    Dear Chris,

    Actrually, those plugins already add meta box at post and page entry.

    function expirationdate_meta_post() {
    	add_meta_box('expirationdatediv', __('Post Expirator'), 'expirationdate_meta_box', 'post', 'advanced', 'high');
    }
    add_action ('dbx_post_advanced','expirationdate_meta_post');
    
    /**
     * Add's hooks to get the meta box added to page
     */
    function expirationdate_meta_page() {
    	add_meta_box('expirationdatediv', __('Post Expirator'), 'expirationdate_meta_box', 'page', 'advanced', 'high');
    }
    add_action ('edit_page_form','expirationdate_meta_page');

    However in your Live Blogging New Entry not appears.

    Any ideas?

    Thanks

    The add_meta_box call is just being called for post and page, not for the liveblog_entry custom post type; adding a call to do that may solve the issue

    Thread Starter zestycoder

    (@zestycoder)

    All right. I’ll give it a try.

    Thanks

    Thread Starter zestycoder

    (@zestycoder)

    Thanks Chris. That’s working fine now! ??

    Thread Starter zestycoder

    (@zestycoder)

    Oh, almost forget. Merry Christmas and very Happy New Year to you Chris!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: Live Bloggging] Using Live Blogging alongside with other plugins’ is closed to new replies.