/*add this code to theme fucntion.php file, if rtl true must run js if ( is_rtl() ) { wp_enqueue_script( 'script', get_stylesheet_directory_uri() . '/jscomposer-full-width-rtl-fix.js', array ( 'jquery' ), 1.1, true); } */ jQuery(document).ready(function() { function jscomposer_full_width_rtl_fix(){ var $elements = jQuery('[data-vc-full-width="true"]'); jQuery.each($elements, function () { var $el = jQuery(this); $el.css('right', $el.css('left')).css('left', ''); }); } jQuery(document).on('vc-full-width-row', function () { jscomposer_full_width_rtl_fix(); }); jscomposer_full_width_rtl_fix(); });