Skip to content

Instantly share code, notes, and snippets.

View MHitMaN's full-sized avatar
🌏
Deep Working!

Hiti MHitMaN

🌏
Deep Working!
View GitHub Profile
@MHitMaN
MHitMaN / functions.php
Last active October 5, 2019 09:30
Fix edit block and row buttons RTL Visual Composer(WPBakery) Admin area WordPress
<?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;
@MHitMaN
MHitMaN / functions.php
Last active September 9, 2019 13:25
Edit before output (render) site content WordPress and modify content (Buffer) | Edit site content
<?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.
*/