Skip to content

Instantly share code, notes, and snippets.

@zartgesotten
Created June 3, 2024 12:19
Show Gist options
  • Save zartgesotten/e32f37593629107a5170d24e6aa12b9d to your computer and use it in GitHub Desktop.
Save zartgesotten/e32f37593629107a5170d24e6aa12b9d to your computer and use it in GitHub Desktop.
<?php
/* add css to remove script selector from beaver builder modules */
add_action( 'wp_enqueue_scripts', 'bb_remove_fontselector');
function bb_remove_fontselector() {
echo "
<style>
.fl-font-field-font-wrapper {visibility: hidden;}
</style>
";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment