Call to undefined function
The problem, as pointed out in the php error, is on line 7 of the “chat.php” file: add_action( ‘init’, ic_show_chat_bar()); This line has two problems: The correct syntax for a valid callback function should be without the parenthesis and wrapped in single quotes. Since the function is declared inside a php class, it won’t be … Read more