Created
June 3, 2024 12:19
-
-
Save zartgesotten/e32f37593629107a5170d24e6aa12b9d to your computer and use it in GitHub Desktop.
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
<?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