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-.../template...
File: template-widgetized.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Template Widgetized
[2] Fix | Delete
*
[3] Fix | Delete
* This template can be overridden by copying it to your child_theme_folder/themify-builder/template-widgetized.php.
[4] Fix | Delete
*
[5] Fix | Delete
* Access original fields: $args['mod_settings']
[6] Fix | Delete
* @author Themify
[7] Fix | Delete
*/
[8] Fix | Delete
[9] Fix | Delete
defined( 'ABSPATH' ) || exit;
[10] Fix | Delete
[11] Fix | Delete
$mod_name=$args['mod_name'];
[12] Fix | Delete
$element_id = $args['module_ID'];
[13] Fix | Delete
$fields_args = $args['mod_settings']+ array(
[14] Fix | Delete
'mod_title_widgetized' => '',
[15] Fix | Delete
'sidebar_widgetized' => '',
[16] Fix | Delete
'custom_css_widgetized' => '',
[17] Fix | Delete
'background_repeat' => '',
[18] Fix | Delete
'animation_effect' => ''
[19] Fix | Delete
);
[20] Fix | Delete
[21] Fix | Delete
$container_class = apply_filters('themify_builder_module_classes', array(
[22] Fix | Delete
'module',
[23] Fix | Delete
'module-' . $mod_name,
[24] Fix | Delete
$element_id,
[25] Fix | Delete
$fields_args['custom_css_widgetized'],
[26] Fix | Delete
$fields_args['background_repeat'],
[27] Fix | Delete
), $mod_name, $element_id, $fields_args);
[28] Fix | Delete
[29] Fix | Delete
if(!empty($fields_args['global_styles']) && Themify_Builder::$frontedit_active===false){
[30] Fix | Delete
$container_class[] = $fields_args['global_styles'];
[31] Fix | Delete
}
[32] Fix | Delete
$container_props = apply_filters('themify_builder_module_container_props', self::parse_animation_effect($fields_args,array(
[33] Fix | Delete
'class' => implode(' ', $container_class)
[34] Fix | Delete
)), $fields_args, $mod_name, $element_id);
[35] Fix | Delete
[36] Fix | Delete
if(Themify_Builder::$frontedit_active===false){
[37] Fix | Delete
$container_props['data-lazy']=1;
[38] Fix | Delete
}
[39] Fix | Delete
self::sticky_element_props($container_props, $fields_args);
[40] Fix | Delete
?>
[41] Fix | Delete
<!-- module widgetized -->
[42] Fix | Delete
<div <?php echo themify_get_element_attributes($container_props); ?>>
[43] Fix | Delete
<?php
[44] Fix | Delete
$container_props=$container_class=$args=null;
[45] Fix | Delete
echo Themify_Builder_Component_Module::get_module_title($fields_args,'mod_title_widgetized');
[46] Fix | Delete
[47] Fix | Delete
do_action('themify_builder_before_template_content_render');
[48] Fix | Delete
if ($fields_args['sidebar_widgetized']!== '' && function_exists('dynamic_sidebar')){
[49] Fix | Delete
dynamic_sidebar($fields_args['sidebar_widgetized'] );
[50] Fix | Delete
}
[51] Fix | Delete
do_action('themify_builder_after_template_content_render');
[52] Fix | Delete
?>
[53] Fix | Delete
</div>
[54] Fix | Delete
<!-- /module widgetized -->
[55] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function