• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

Implemented Fix for Support Widgets

LPH

Flight Director
Flight Instructor
Open class-xenword-dashboard-widget-loader.php

Found in /legacy/includes/Admin/Dashboard.

Find includes method and replace with the following:

PHP:
/**
* Loads the initial files needed by the plugin.
*
* @since XenWord 3.4.4
*/
public function includes() {

   if (is_admin() ) {
      /** Load the XenWord Dashboard Widget file. */
      require_once __DIR__ . '/' . 'xenword-dashboard-widget.php';

      if ( $this->options['enable_dashboard_support_widget'] == true ) {

         require_once __DIR__ . '/' . 'xenword-dashboard-support-widget.php';
      }
   }
}

Fixed in XenWord Pro 2017.10.23
 
Top