ThemeFuse / Unyson

A WordPress framework that facilitates the development of WP themes
http://unyson.io
922 stars 217 forks source link

Brizy promotion too intrusive? #3747

Open dominicht opened 5 years ago

dominicht commented 5 years ago

Hi, I love the framework and been using it for most of the websites I create. The only thing that's been bothering me a lot is the intrusive Brizy promotion that seems to be popping up way too often (every 10 days) even after being dismissed.

I understand the need to promote your other product, but this seems like overkill, mostly with the general cluster of messy WordPress notifications. Is there any way to completely remove the promotion? Alternatively, a dismiss for 12 months button would be much less intrusive for installations where the Brizy builder cannot be used.

Thanks, Dominic

ange007 commented 5 years ago

Also interested. In particular, because of this notice and user dissatisfaction, we are now forced to switch to other solutions for their new themes.

osbulbul commented 5 years ago

I came to check that issue too, but looks like devs not interested with it. I am thinking to change to other frameworks too, but really sorry to leave Unyson...

mastef commented 5 years ago

You can set the brizy admin banner expiration timeout. Add this to some admin function in your functions.php :

        $expiration = 10 * ( 60 * 60 * 24 );
        set_transient( 'fw_brz_admin_notice', 1, $expiration );

Or increase the expiration day by changing the 10 to any other amount of days.