qamar356 Posted September 2, 2016 Report Share Posted September 2, 2016 Hi Do we have any option to just change the front end with RTL options ? we dont want to change the back end. Please Let us know if there any option or any plugin available for this request. Link to comment Share on other sites More sharing options...
Ben Posted September 4, 2016 Report Share Posted September 4, 2016 Hello, Sure. Here is how to change it: Find this part in functions.php file function mts_rtl() { Add this code right after it: if ( is_admin() ) { return; } So it should look like this: function mts_rtl() { if ( is_admin() ) { return; } global $wp_locale, $wp_styles; $wp_locale->text_direction = 'rtl'; I'd like to add that we are rolling out the same change for all our themes, in our newer and updated themes RTL is only applied to the front end. So this change will probably be applied to SociallyViral too in a future update. Hope that helps. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now