: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* This template can be overridden by copying it to your child_theme_folder/themify-builder/template-link-block.php.
* Access original fields: $args['mod_settings']
defined( 'ABSPATH' ) || exit;
$mod_name=$args['mod_name'];
$element_id=$args['module_ID'];
$fields_args=$args['mod_settings']+ array(
'lb_layout'=>'icon-center',
'lightbox_width_unit'=>'px',
'lightbox_height_unit'=>'px',
'color'=>'tb_default_color',
$container_class=apply_filters('themify_builder_module_classes', array(
$fields_args['lb_layout'],
$fields_args['css_class']
), $mod_name, $element_id, $fields_args);
if(!empty($fields_args['global_styles']) && Themify_Builder::$frontedit_active===false) {
$container_class[]=$fields_args['global_styles'];
if(!empty($fields_args['disp_icon_btm'])){
$container_class[] = 'icon_disp_btm';
$container_props=apply_filters('themify_builder_module_container_props', self::parse_animation_effect($fields_args, array(
'class'=>implode(' ', $container_class),
)), $fields_args, $mod_name, $element_id);
if(Themify_Builder::$frontedit_active===false) {
$container_props['data-lazy']=1;
Themify_Builder_Model::load_color_css($fields_args['color']);
self::sticky_element_props($container_props, $fields_args);
<!-- module link_block -->
<div <?php echo themify_get_element_attributes($container_props); ?>>
$container_props=$container_class=$args=null;
$link_css_clsss=array('tb_link_block_container ui ' . $fields_args['color']);
if ($fields_args['shape']!=='normal') {
$link_css_clsss[] = $fields_args['shape'];
if ($fields_args['shape'] === 'rounded') {
Themify_Builder_Model::load_appearance_css($fields_args['shape']);
if($fields_args['link_options']==='lightbox') {
$link_css_clsss[]='themify_lightbox';
if($fields_args['lightbox_width']!=='' || $fields_args['lightbox_height']!=='') {
$lightbox_settings=array();
if($fields_args['lightbox_width']!=='') {
$lightbox_settings[]=$fields_args['lightbox_width'] . $fields_args['lightbox_width_unit'];
if($fields_args['lightbox_height']!=='') {
$lightbox_settings[]=$fields_args['lightbox_height'] . $fields_args['lightbox_height_unit'];
$link_attr[]=sprintf('data-zoom-config="%s"', implode('|', $lightbox_settings));
unset($lightbox_settings);
elseif($fields_args['link_options']==='newtab') {
$nofollow=$fields_args['nofollow_link']==='yes' ? 'nofollow ' : '';
$link_attr[]='target="_blank" rel="' . $nofollow . 'noopener"';
if($fields_args['nofollow_link']==='yes' && $fields_args['link_options']!=='newtab') {
$link_attr[]='rel="nofollow"';
$tag = !empty($fields_args['link']) ? 'a' : 'span';
$link_attr[]='href="'.esc_url($fields_args['link']).'"';
if(!empty($fields_args['title'])){
$link_attr[]='title="'.esc_attr($fields_args['title']).'"';
$link_attr[]='class="'.implode(' ', $link_css_clsss).'"';
<<?php echo $tag.' ',implode(' ', $link_attr) ?>>
<?php if ('icon'===$fields_args['icon_type'] && $fields_args['icon']!==''): ?>
<em class="tb_link_block_icon tf_inline_b"><?php echo themify_get_icon($fields_args['icon'])?></em>
<?php elseif ('image' === $fields_args['icon_type'] && $fields_args['image'] !=='' ) :
echo themify_get_image( [
'class' => 'tf_vmiddle tf_box tb_link_block_img',
'src' => $fields_args['image'],
'w' => $fields_args['i_w'],
'h' => $fields_args['i_h'],
'alt' => $fields_args['title'] ?? null
<div class="tf-lb-content">
<?php if(!empty($fields_args['heading'])): ?>
<div class="tb_link_block_heading"><?php echo $fields_args['heading'] ?></div>
<?php if(!empty($fields_args['blurb'])): ?>
<div class="tb_link_block_blurb"><?php echo $fields_args['blurb'] ?></div>