Topic on Extension talk:Popups

how to enable popups in default

4
Zeteticl (talkcontribs)

when i just install popups, guest will show the popups but log-ined user wont show

when i add 「

wfLoadExtension( 'BetaFeatures' );

$wgPopupsBetaFeature = true;

log-ined user need to enable the popups by them.

and guest wont show popups.

is it possible to make it enable for guest and log-ined user in default.

CKoerner (WMF) (talkcontribs)

Looking at the configuration options in extension.json (Thanks @Tgr (WMF) it looks like you'll want to turn off the Beta feature settings (as it won't be a beta feature anymore! Then enable it in preferences and as default (I think I have these settings correct).

$wgPopupsBetaFeature = false;

$wgPopupsHideOptInOnPreferencesPage = true;

$wgPopupsOptInDefaultState = 1;

https://github.com/wikimedia/mediawiki-extensions-Popups/blob/master/extension.json#L59-L64

24.248.254.194 (talkcontribs)

There's a colon ":" after the "false" setting for "$wgPopusBetaFeature. Should be a semi-colon ";"

CKoerner (WMF) (talkcontribs)

Fixed! :)

Reply to "how to enable popups in default"