This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Put this code into your current theme functions. | |
// This will fix your RTL issue with the controls row on Visual Composer(WPBakery). | |
add_action('admin_head', 'fix_rtl_wpbakery_css'); | |
function fix_rtl_wpbakery_css() { | |
echo '<style> | |
.vc_controls-row { | |
direction: ltr; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* WordPress modifying the output before render or edit site content. | |
* | |
* Apply find and replace rules | |
* or you can make any modification before content going on to show users. | |
* | |
* It's simple, just paste this code on your Plugin/Theme functions. | |
*/ |