OwlCyberSecurity - MANAGER
Edit File: vc_row_inner.php
<?php if ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc-templates/vc-templates.php' ) ) { include_once( get_template_directory() . '/vc-templates/vc-templates.php' ); } if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Shortcode attributes * @var $atts * @var $el_class * @var $css * @var $el_id * @var $equal_height * @var $content_placement * @var $content - shortcode content * Shortcode class * @var $this WPBakeryShortCode_VC_Row_Inner */ $el_class = $equal_height = $content_placement = $css = $el_id = ''; $disable_element = ''; $output = $after_output = ''; /***** Our code modification - begin *****/ $row_content_width = $content_text_aligment = $simple_background_color = $simple_background_image = $background_image_position = $disable_background_image = ''; $eltdf_row_wrapper_start = $eltdf_row_wrapper_end = ''; /***** Our code modification - end *****/ $atts = vc_map_get_attributes( $this->getShortcode(), $atts ); extract( $atts ); $el_class = $this->getExtraClass( $el_class ); $css_classes = array( 'vc_row', 'wpb_row', //deprecated 'vc_inner', 'vc_row-fluid', $el_class, vc_shortcode_custom_css_class( $css ), ); if ( 'yes' === $disable_element ) { if ( vc_is_page_editable() ) { $css_classes[] = 'vc_hidden-lg vc_hidden-xs vc_hidden-sm vc_hidden-md'; } else { return ''; } } if (vc_shortcode_custom_css_has_property( $css, array('border', 'background') )) { $css_classes[]='vc_row-has-fill'; } if (!empty($atts['gap'])) { $css_classes[] = 'vc_column-gap-'.$atts['gap']; } if ( ! empty( $equal_height ) ) { $flex_row = true; $css_classes[] = 'vc_row-o-equal-height'; } if ( ! empty( $atts['rtl_reverse'] ) ) { $css_classes[] = 'vc_rtl-columns-reverse'; } if ( ! empty( $content_placement ) ) { $flex_row = true; $css_classes[] = 'vc_row-o-content-' . $content_placement; } if ( ! empty( $flex_row ) ) { $css_classes[] = 'vc_row-flex'; } $wrapper_attributes = array(); // build attributes for wrapper if ( ! empty( $el_id ) ) { $wrapper_attributes[] = 'id="' . esc_attr( $el_id ) . '"'; } /***** Our code modification - begin *****/ $grid_row_class = $grid_row_data = $eltdf_vc_row_style = $eltdf_grid_row_style = array(); if ( $row_content_width !== 'grid' ) { if ( ! empty( $disable_background_image ) ) { $css_classes[] = 'eltdf-disabled-bg-image-bellow-' . esc_attr( $disable_background_image ); } if ( ! empty( $simple_background_color ) ) { $eltdf_vc_row_style[] = 'background-color:' . esc_attr( $simple_background_color ); } if ( ! empty( $simple_background_image ) ) { $image_src = wp_get_attachment_image_src( $simple_background_image, 'full' ); $eltdf_vc_row_style[] = 'background-image: url(' . esc_url( $image_src[0] ) . ')'; } if ( ! empty( $background_image_position ) ) { $eltdf_vc_row_style[] = 'background-position: ' . esc_attr( $background_image_position ); } if ( ! empty( $content_text_aligment ) ) { $css_classes[] = 'eltdf-content-aligment-' . esc_attr( $content_text_aligment ); } } else { if ( ! empty( $disable_background_image ) ) { $grid_row_class[] = 'eltdf-disabled-bg-image-bellow-' . esc_attr( $disable_background_image ); } if ( ! empty( $simple_background_color ) ) { $eltdf_grid_row_style[] = 'background-color:' . esc_attr( $simple_background_color ); } if ( ! empty( $simple_background_image ) ) { $image_src = wp_get_attachment_image_src( $simple_background_image, 'full' ); $eltdf_grid_row_style[] = 'background-image: url(' . esc_url( $image_src[0] ) . ')'; } if ( ! empty( $background_image_position ) ) { $eltdf_grid_row_style[] = 'background-position: ' . esc_attr( $background_image_position ); } if ( ! empty( $content_text_aligment ) ) { $grid_row_class[] = 'eltdf-content-aligment-' . esc_attr( $content_text_aligment ); } } $grid_row_classes = ''; if ( ! empty( $grid_row_class ) ) { $grid_row_classes = implode( ' ', $grid_row_class ); } $eltdf_vc_row_styles = ''; if ( ! empty( $eltdf_vc_row_style ) ) { $eltdf_vc_row_styles = implode( ';', $eltdf_vc_row_style ); } $eltdf_grid_row_styles = ''; if ( ! empty( $eltdf_grid_row_style ) ) { $eltdf_grid_row_styles = implode( ';', $eltdf_grid_row_style ); } if ( $row_content_width === 'grid' ) { $eltdf_row_wrapper_start .= '<div class="eltdf-row-grid-section-wrapper ' . esc_attr( $grid_row_classes ) . '" ' . musea_elated_get_inline_style( $eltdf_grid_row_styles ) . '><div class="eltdf-row-grid-section">'; $eltdf_row_wrapper_end .= '</div></div>'; } /***** Our code modification - end *****/ $css_class = preg_replace( '/\s+/', ' ', apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, implode( ' ', array_filter( array_unique( $css_classes ) ) ), $this->settings['base'], $atts ) ); $wrapper_attributes[] = 'class="' . esc_attr( trim( $css_class ) ) . '"'; $output .= $eltdf_row_wrapper_start; $output .= '<div ' . implode( ' ', $wrapper_attributes ) . ' ' . musea_elated_get_inline_style( $eltdf_vc_row_styles ) . '>'; $output .= wpb_js_remove_wpautop( $content ); $output .= '</div>'; $output .= $eltdf_row_wrapper_end; $output .= $after_output; echo musea_elated_get_module_part( $output );