.fl-row-content-wrap'; $all_watchers[] = '.fl-module-box'; return $all_watchers; } ); add_filter( 'fl_builder_render_css', [ $this, 'replace_static_content' ], PHP_INT_MAX, 1 ); add_filter( 'fl_builder_render_js', [ $this, 'replace_static_content' ], PHP_INT_MAX, 1 ); } /** * Replace urls in static content. * * @param string $content Content to replace. * * @return string Altered content. */ public function replace_static_content( $content ) { return Optml_Main::instance()->manager->replace_content( $content, true ); } }