• Resolved dave57

    (@dave57)


    When I use a container from GenerateBlocks Plugin, Responsive Block Control does not work to hide it on any of the settings. Block inside of the container work fine.

    Thanks

    Dave

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author landwire

    (@landwire)

    Hi Dave,
    unfortunately I do not know the GenerateBlocks plugin at all. But as far as I could read on their plugin description they do bring their own logic to hide blocks. Maybe this is colliding with the code of my plugin?

    Unfortunately I cannot guarantee that my plugin works with all other plugins out there.

    If it helps you can use the filter to switch off CSS logic and write your own CSS to override any conflict that the GenerateBlocks plugin might create. My plugin will then just output its classes.

    
    function override_responsive_block_control_add_css() {
          return false;
      }
      add_filter('responsive_block_control_breakpoints', 'override_responsive_block_control_add_css');
    

    I hope this helps.
    Best,
    Sascha

    Plugin Author landwire

    (@landwire)

    Look out for the following style of classes in the markup: rbc-is-hidden-on-mobile, rbc-is-hidden-on-tablet, rbc-is-hidden-on-desktop, rbc-is-hidden-on-wide. They should be set by my plugin. If they are not maybe ask GenerateBlocks how they are dealing with classes/props on their blocks.

    Plugin Author landwire

    (@landwire)

    Closing this as there was no reply in 2 months.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Does not work with GenerateBlocks Plugin’ is closed to new replies.