Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_filter( 'fl_builder_render_module_content', function( $content, $module ) {
  2.  
  3. if ( 'html' === $module->settings->type && FLBuilderModel::is_builder_active() ) {
  4. $content = 'HTML rendering disabled in the builder.';
  5. }
  6.  
  7. return $content;
  8.  
  9. }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement