Created
August 25, 2015 12:24
-
-
Save tjhole/8aa39c9062746fcbb862 to your computer and use it in GitHub Desktop.
ACF vs iThemes Exchange Plugin Conflict Quick Fix
This file contains hidden or 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
/* ======================================================================================================================== | |
ACF vs iThemes Exchange Quick Fix | |
======================================================================================================================== */ | |
add_action('admin_head', 'acf_exchange_fix'); | |
function acf_exchange_fix() { | |
echo "<style> | |
#it-exchange-advanced-tab-nav | |
[aria-controls|=acf] { | |
display: none; | |
} | |
</style>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment