OwlCyberSecurity - MANAGER
Edit File: vc_row_edit.php
<?php /** * Update Visual Composer Row */ add_action( 'vc_before_init', 'pearl_integrateWithVC' ); function pearl_integrateWithVC() { $attributes = array( 'type' => 'checkbox', 'heading' => "Enable Container?", 'param_name' => "container", 'value' => "yes", 'description' => esc_html__( "Enable container if you want to display boxed layout for your contents.", "pearl-medical-framework" ) ); vc_add_param( 'vc_row', $attributes ); } require_once( plugin_dir_path( __FILE__ ) . '/shortcodes/custom/custom_param.php' );