.wpb_salient_property_features .vc_element-icon:before, a[data-tag="salient_property_features"] .vc_element-icon:before { font-family: "Dashicons" !important; content: "\f179"; } '; } public function custom_wpbakery_element() { $class_name = get_class($this); $widget_dir = dirname(__FILE__); $html_template = $widget_dir . '/' . str_replace("_", "-", str_replace(array( "salient_", "_widget" ), "", sanitize_title($class_name))) . '-html.php'; vc_map( array( "name" => __( 'Features', 'propertyhive' ), "base" => "salient_property_features", "class" => "", "category" => __( "Property Hive", "propertyhive"), "html_template" => $html_template, "params" => array( array( "type" => "dropdown", "class" => "", "heading" => __( 'Show Title', 'propertyhive' ), "param_name" => "show_title", "value" => array( __( 'Yes', 'propertyhive' ) => 'yes', __( 'No', 'propertyhive' ) => 'no', ), 'std' => 'yes', ), array( 'type' => 'font_container', 'param_name' => 'font_container', 'value' => 'text_align:left', 'settings' => array( 'fields' => array( 'text_align', 'font_size', 'line_height', 'color', 'tag_description' => esc_html__( 'Select element tag.', 'js_composer' ), 'text_align_description' => esc_html__( 'Select text alignment.', 'js_composer' ), 'font_size_description' => esc_html__( 'Enter font size.', 'js_composer' ), 'line_height_description' => esc_html__( 'Enter line height.', 'js_composer' ), 'color_description' => esc_html__( 'Select heading color.', 'js_composer' ), ), ), ), array( 'type' => 'css_editor', 'heading' => __( 'CSS box', 'js_composer' ), 'param_name' => 'css', 'group' => __( 'Design Options', 'js_composer' ), ), ) )); } } new Salient_Property_Features_Widget();