Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mzykin/381274495a0b838d80147d1d5e51a327 to your computer and use it in GitHub Desktop.
Save mzykin/381274495a0b838d80147d1d5e51a327 to your computer and use it in GitHub Desktop.
<?php
/**
* *whitelabel* Beaver Builder
* Please support Beaver Builder by buying the product at wpbeaverbuilder.com
*/
class FLBuilderWhiteLabel {
public static function is_white_labeled() {
return true;
}
public static function get_branding() {
return 'Page Builder';
}
public static function get_branding_icon() {
return get_stylesheet_directory_uri() . '/images/logo.svg';
}
public static function get_help_button_settings() {
return FLBuilderModel::get_help_button_defaults();
}
public static function get_theme_branding() {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment