wordpress-sdk icon indicating copy to clipboard operation
wordpress-sdk copied to clipboard

[whitelabel] [filter] Added a filter for the whitelabeled mode flag.

Open fajardoleo opened this issue 5 years ago • 1 comments

fajardoleo avatar Dec 28 '20 13:12 fajardoleo

@fajardoleo why not simply change this line:

if ( true !== $this->_storage->is_whitelabeled ) {

with:

if ( true !== $this->apply_filters( 'is_whitelabeled', $this->_storage->is_whitelabeled ) ) {

?

vovafeldman avatar Jan 04 '21 16:01 vovafeldman