Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/themify-.../includes/plugin-c...
File: tutor.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Builder Plugin Compatibility Code
[2] Fix | Delete
*
[3] Fix | Delete
* @package Themify_Builder
[4] Fix | Delete
* @subpackage Themify_Builder/classes
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
/**
[8] Fix | Delete
* Tutor LMS
[9] Fix | Delete
* @link https://www.themeum.com/product/tutor-lms/
[10] Fix | Delete
*/
[11] Fix | Delete
class Themify_Builder_Plugin_Compat_Tutor {
[12] Fix | Delete
[13] Fix | Delete
static function init() {
[14] Fix | Delete
add_action( 'template_redirect', array( __CLASS__, 'template_redirect' ) );
[15] Fix | Delete
}
[16] Fix | Delete
[17] Fix | Delete
/**
[18] Fix | Delete
* Early call the wp_enqueue_editor hook to prevent Tutor from running
[19] Fix | Delete
* wp_enqueue_editor() running in Builder's frontend editor page.
[20] Fix | Delete
*/
[21] Fix | Delete
public static function template_redirect() {
[22] Fix | Delete
if ( Themify_Builder_Model::is_front_builder_activate() ) {
[23] Fix | Delete
remove_all_filters( 'wp_enqueue_editor' );
[24] Fix | Delete
do_action( 'wp_enqueue_editor' );
[25] Fix | Delete
}
[26] Fix | Delete
}
[27] Fix | Delete
}
[28] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function