• Resolved shaunhaage

    (@shaunhaage)


    Hi,

    We are running a Car Hire site and users and vendors only have access to the bookings details page. We recently upgraded our plugin and the conversation box no longer displays on this page. We think the previous developer may have customised the plugin but not on the child theme.

    How would we be able to get this to display here? Which hook could I use to inject this feature?

    https://snipboard.io/3pwuLD.jpg

    Thanks in advance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author N-Media

    (@nmedia)

    Hi,

    can you please share the booking post type so I can give you a script to enable the Message box on the bookings page?

    Thread Starter shaunhaage

    (@shaunhaage)

    I have resolved this issue by editing the plugin.class.php

    function render_convos_in_orders() {
    // add_meta_box( 'orders_convo', 'Conversation',
    // 		array($this,'render_convo_admin'),
    // 		'shop_order', 'normal', 'default');
    add_meta_box( 'orders_convo', 'Conversation',
            array($this,'render_convo_admin'),
            array( 'wc_booking' ), 'normal', 'default');
    }
    add_action( 'admin_init', array($this, 'render_convos_in_orders') );

    Is there any way for me to move this into a child theme so that I prevent this from being overridden when I apply updates?

    Plugin Author N-Media

    (@nmedia)

    Hi,

    Ok we have added support for WC Bookings in next version, you don’t need to worry for future updates ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Message Box not showing on Edit Bookings page’ is closed to new replies.