Add "Design Options" Tab with CSS Editor to Your Element

⌘K
  1. Home
  2. Docs
  3. Developers “How To&...
  4. Add “Design Options” Tab with CSS Editor to Your Element

Add “Design Options” Tab with CSS Editor to Your Element

Adding CSS editor to your content element is very easy and it is a two steps process. First, map your attribute in vc_map() function call, then make sure you output it in your content element template file.

Map “css” param in your vc_map() function call:

CSS param mapping

<?php
add_action( 'vc_before_init', 'your_name_integrateWithVC' );
function your_name_integrateWithVC() {
 vc_map( array(
  "name" => __( "Bar tag test", "my-text-domain" ),
  "base" => "bartag",
  "params" => array(
  array(
  'type' => 'css_editor',
  'heading' => __( 'Css', 'my-text-domain' ),
  'param_name' => 'css',
  'group' => __( 'Design options', 'my-text-domain' ),
  ),
  ),
 ) );
}
class WPBakeryShortCode_Bartag extends WPBakeryShortCode {
}

Very basic element, which has only one attribute available for edit and it’s moved to separate “Design options” tab (group).

It’s recommended, to extend WPBakeryShortCode class, that way you will have access to all default inbuilt methods and your content element will “blend” better with whole WPB system.

HTML output

Now param value is saved, but you should also make sure to output correct css class name to your element’s output. Have a look at the example below, to understand how it is done.

Copy paste this code to wp-content/themes/%your-theme%/vc_templates/bartag.php file. Note: we used bartag as a content elements base in vc_map()function call.

<?php
$css = '';
extract(shortcode_atts(array(
  'css' => ''
), $atts));
$css_class = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, vc_shortcode_custom_css_class( $css, ' ' ), $this->settings['base'], $atts );
?>
<div class="<?php echo esc_attr( $css_class ); ?>">
  I am bartag
</div><?php echo $this->endBlockComment('bartag'); ?>

Important part in this snippet is vc_shortcode_custom_css_class() function call, it is parsing css attribute and outputs its name in the element’s html markup.

Was this article helpful to you? No Yes

How can we help?