Fix File
•
/
home
/
sportsfe...
/
public_h...
/
clone
/
wp-conte...
/
plugins
/
themify-...
/
includes
/
plugin-c...
•
File:
bwpminify.php
•
Content:
<?php /** * Builder Plugin Compatibility Code * * @package Themify_Builder * @subpackage Themify_Builder/classes */ class Themify_Builder_Plugin_Compat_BWPMinify { static function init() { // Only apply the filter when WP Multisite with subdirectory install. if ( defined( 'SUBDOMAIN_INSTALL' ) && ! SUBDOMAIN_INSTALL ) { add_filter( 'bwp_minify_get_src', array( __CLASS__, 'bwp_minify_get_src' ) ); } } /** * Modify the src for builder stylesheet. */ public static function bwp_minify_get_src(string $string ):string { $split_string = explode( ',', $string ); $found_src = array(); foreach( $split_string as $src ) { if ( preg_match( '/^files\/themify-css/', $src ) ) { $found_src[] = $src; } } if ( !empty( $found_src )) { $basedir = themify_upload_dir('basedir'); $base_path = substr( $basedir, strpos( $basedir, 'wp-content' ) ); foreach ( $found_src as $replace_src ) { $key = array_search( $replace_src, $split_string ); if ( $key !== false ) { $split_string[ $key ] = trailingslashit( $base_path ) . str_replace( 'files/themify-css', 'themify-css', $split_string[ $key ] ); } } $string = implode( ',', $split_string ); } return $string; } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List