Hey, i tried the code, it’s not working out yet. I have attached my Code, please do tell me what i am doing wrong.
add_filter('wcfm_bookings_additional_info_column_label', function ($column_label) {
return 'Chat';
});
add_filter('wcfm_bookings_additonal_data_hidden', '__return_false');
add_filter('render_wooconvo_myaccount','wcfm_bookings_additonal_data', function ($column_data, $order_id) {
function render_wooconvo_myaccount($order){
$admin = 'no';
if ( current_user_can( 'administrator' ) ) {$admin = 'yes';}
$this -> order_id = $order->get_id();
$this -> load_template('convo-history.php', array('convo_order_admin'=>$admin));
$this -> load_template('send-message.php', array('convo_order_admin'=>$admin));
}
}, 50, 2);