Category Archives: Visual Composer

Visual Composer: Remove Visual Composer Tab from Dashboard Menu

Add this following code to your themes functions.php function custom_menu_page_removing() { remove_menu_page(‘vc-general’); //vc } add_action( ‘admin_menu’, ‘custom_menu_page_removing’ ); This is how to find out for the next time: The link for Visual-Composer main page is admin.php?page=vc-general if you want to … Continue reading

Posted in CMS, Visual Composer | Comments Off on Visual Composer: Remove Visual Composer Tab from Dashboard Menu

Visual Composer: edit google font list

https://wpbakery.atlassian.net/wiki/display/VC/How+to+Manage+List+of+Google+Fonts Remove the list of fonts from wp-content/plugins/js_composer_theme/include/params/google_fonts google_fonts.php Or To change this list use add_filters(‘vc_google_fonts_get_fonts_filter’,’your_custom_function’); and change array vc_filter: vc_google_fonts_get_fonts_filter

Posted in CMS, Visual Composer | Comments Off on Visual Composer: edit google font list