Remove the admin login popup

Permalink 1 user found helpful
Anyway to do this? Would prefer to not have to close this everytime logging in.

Thanks

 
WebcentricLtd replied on at Permalink Reply
which version of Concrete5 are you using?
tsdonohue5 replied on at Permalink Reply
hutman answered for 5.6.x, what about 5.7 and up?

thanks!
hutman replied on at Permalink Reply
hutman
If you are in Concrete 5.6.x you can add this line to your config/site.php

define('ENABLE_NEWSFLOW_OVERLAY', false);
tsdonohue5 replied on at Permalink Reply
thanks, will try!

Is it the same for 5.7?
WebcentricLtd replied on at Permalink Reply
nope:

create a blank concrete.php inside /application/config

add the following to it:

<?php
return array(
'external' => array(
'news_overlay' => false,
)
);

and I believe that will stop it
tsdonohue5 replied on at Permalink Reply
I will try, thanks again!
daenu replied on at Permalink Reply
daenu
This works. thank you
surefyre replied on at Permalink Reply
surefyre
In a package does this work?

Testing this in package controller to remove the 'Learn the Basics' popup which really is inappropriate in many cases but don't think I have the right keyname(s) for that particular item... Might work for the others though, let me know your success with this!

// override marketplace, welcome popup, etc
        \Config::save('concrete.marketplace.enabled', false);
        \Config::save('concrete.marketplace.intelligent_search', false);
        \Config::save('concrete.external.intelligent_search_help', false);
        \Config::save('concrete.external.news_overlay', false);
        \Config::save('concrete.external.news', false);


Trying to find a keyname from /concrete/config/concrete.php