Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created August 25, 2015 12:24
Show Gist options
  • Save tjhole/8aa39c9062746fcbb862 to your computer and use it in GitHub Desktop.
Save tjhole/8aa39c9062746fcbb862 to your computer and use it in GitHub Desktop.
ACF vs iThemes Exchange Plugin Conflict Quick Fix
/* ========================================================================================================================
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