Extension talk:Popups

When asking a question about a preview not displaying please ensure to include information on the wikitext of the first section of the target page (markup before first heading double equals signs) and the network request.

Popups in MediaWiki private server?

edit

When linking a wikipedia article to my article, does it recognize it as part of the MediaWiki group and generate a pop up or this is exclusive to server-side content? Eduard da Silva (talk) 23:43, 3 February 2025 (UTC)Reply

Workaround - Handling lack of popups on 1.43 when logged in

edit

For some reason, the code added to extension.json doesn't work.

So, go to your extensions/Popups/extension.json file at around line 173 and edit out:

	"ConditionalUserOptions": {
		"popups": [
			[
				"1",
				[
					"registered-after",
					"20170816000000"
				]
			],
			[
				"0",
				[
					"named-user"
				]
			]
		]
	},

Get rid of the array next to

"popups":

and change to

"popups": "1"

like so

    "ConditionalUserOptions": {
		"popups": "1" 
	},

Save the file.

Visit a page on your wiki that should have popups. You may need to do a hard refresh to purge cache, but it should work after this. Joe Beaudoin Jr. Redux (talk) 21:54, 5 March 2025 (UTC)Reply

I didn't need to do this. What I did need to do was to go to my user Preferences > Appearance and check the box, "Enable page previews (get quick previews of a topic while reading a page)". Fanra (talk) 06:53, 16 March 2025 (UTC)Reply
Return to "Popups" page.