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: maxgalleriamedialibpro.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
* Media Library Folders Pro For WordPress
[9] Fix | Delete
* @link https://maxgalleria.com/downloads/media-library-plus-pro/
[10] Fix | Delete
*/
[11] Fix | Delete
class Themify_Builder_Plugin_Compat_MaxGalleriaMediaLibPro {
[12] Fix | Delete
[13] Fix | Delete
static function init() {
[14] Fix | Delete
add_filter( 'themify_styles_top_frame', array( __CLASS__, 'themify_styles_top_frame' ) );
[15] Fix | Delete
}
[16] Fix | Delete
[17] Fix | Delete
/**
[18] Fix | Delete
* Fix frontend media picker styles missing with the Media Library Folders Pro plugin
[19] Fix | Delete
*
[20] Fix | Delete
* @return array
[21] Fix | Delete
*/
[22] Fix | Delete
public static function themify_styles_top_frame(array $styles=array() ):array {
[23] Fix | Delete
$styles[ MAXGALLERIA_MEDIA_LIBRARY_PLUGIN_URL . '/js/jstree/themes/default/style.min.css' ] = 1;
[24] Fix | Delete
$styles[ MAXGALLERIA_MEDIA_LIBRARY_PLUGIN_URL . '/mlfp-media.css' ] = 1;
[25] Fix | Delete
$styles[ MAXGALLERIA_MEDIA_LIBRARY_PLUGIN_URL . '/maxgalleria-media-library.css' ] = 1;
[26] Fix | Delete
[27] Fix | Delete
return $styles;
[28] Fix | Delete
}
[29] Fix | Delete
}
[30] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function