Strange things in visual baker after update

So in the back end, in visual baker, it has started showing the css, and things after the update: (over all of my websites)

Hi @logoglo,

Thanks for reaching out.

There could be a plugin or custom code that affect yours your visual baker.

I recommend the following troubleshooting procedures before we investigate the settings.

  1. TESTING FOR THEME RELATED ISSUE
  2. TESTING FOR PLUGIN CONFLICT
  3. THEME UPDATE
  4. CHILD THEME
  5. CSS/JS CUSTOMIZATION
  6. VERSION COMPATIBILITY

Only if none of that helps, please give us the following information in a Secure Note.

  • WordPress Login URL
  • Admin level username and password

You can find the Secure Note button at the bottom of your posts.

Thank you.

AS I develop all of my sites, I tested on my own site, all plugins are up to date, theme, child them etc issue is there…although my site does have a lots of css etc, the other sites (around 10 or more) are more simple, and are all having this issue.

The issue literally started after the theme update…so…I have provided login details

This is actually one site I havnt updated the theme yet…issue isnt there:

Hi @logoglo,

I can confirm this is an issue with the recent release. I’ve fixed it, but that won’t be going out until 8.2.0 which is schedule for the beginning of next month. Meanwhile, you can add this PHP code as a patch:

add_action( 'vc_backend_editor_enqueue_js_css', function() {
    ob_start(); ?>

    .x-content-element div.wpb_vc_param_value:not(.content) { display: none !important; }

    .x-content-element div.wpb_vc_param_value.content {
      margin: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .x-content-element div.wpb_vc_param_value.content p,
    .x-content-element div.wpb_vc_param_value.content ul,
    .x-content-element div.wpb_vc_param_value.content ol,
    .x-content-element div.wpb_vc_param_value.content div,
    .x-content-element div.wpb_vc_param_value.content span {
      margin: 3px 0 0;
      font-size: 11px;
      font-style: italic;
      line-height: 1;
      color: #999999;
    }

    .x-content-element div.wpb_vc_param_value.content iframe {
      margin: 3px 0 0;
      width: 100%;
    }

    <?php
    wp_add_inline_style( 'js_composer', ob_get_clean() );
  } );

If you add this at the end of functions.php in X itself, when the theme updates it will get deleted automatically and the official patch can take over. Or you could just put it in a child theme and remove it after updating.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.