If you’d like to fix the latest version (2.3) then find the following function in /wp-content/plugins/freshdesk-support/fresh-desk.php (Line 503) and change the function to the below:
public function fdo_widget_code() {
$options = get_option('freshdesk_feedback_options');
if (is_array($options)) {
echo wp_kses($options['freshdesk_fb_widget_code'], array(
'script' => array()
));
}
}
-
This reply was modified 2 years, 2 months ago by manlikedan.