Blockquote 0
Enable it from the Role manager option under the WPBakery (visual composer) settings. Give administrator--> Post Type---> Custom and select the required option to display.
Blockquote
I didn't work, it's not adding the editor option.
Blockquote After scratching my head for a little bit, the solution is to use the wordpress do_shortcode.
The answer is
<?php
$desc = $product->get_description();
echo do_shortcode($desc);
?>
With the above I get the data from visual composer to formated HTML, hope this can help other programmers. good night!
Blockquote
Can you explain a little bit more how you did?, I'm not a developer but I'll appreciate some steps of how to do it.