Skip to content

Instantly share code, notes, and snippets.

@badabingbreda
Created April 30, 2018 16:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save badabingbreda/01bdfbda296f3e8e7b7b67be3c0bd32d to your computer and use it in GitHub Desktop.
Save badabingbreda/01bdfbda296f3e8e7b7b67be3c0bd32d to your computer and use it in GitHub Desktop.
<?php
/**
* Add to functions.php to mimic *whitelabel* on Pro license
* 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 '<sup>+</sup>Plus Builder';
}
public static function get_branding_icon() {
return 'https://cdn0.iconfinder.com/data/icons/small-n-flat/24/678092-sign-add-256.png';
}
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