Create dismissable popup notifications

I am look for a popup notifications where I can add a link for download of a PDF-file.
I like the Notification stack for Foundry, but I can’t add a link to the stack.

Any tips?

Hi,
May be Notice from 1LD will do the trick.

2 Likes

Also, Limelight from Big White Duck. It’s free!

1 Like

You can add links and even buttons to Foundry’s Notification stack. Links through the A-tag and buttons in the form of Bootstrap buttons.


The result of using the A tag is as follows:

Add Bootstrap buttons using the BUTTON tag, like this:

Which results in this:

Cheers,
Erwin

2 Likes

@Erwin-Leerentveld

I tried this Test <a href="test.com">link</a> but it did not work.
Got conflict with MiniCookie :thinking:

Hmmm, odd. It works fine on my end.

What kind of conflict with MiniCookie?

The code triggered the Mini Cookie so that it opened Pop Up that I have to accept my cookie settings, but can not close the window.
Skjermbilde 2022-04-29 kl. 11.23.00

Use single quote : Test<a href='test.com' title='link'>link</a>

4 Likes

@beretrouge It solved the problem :+1:

2 Likes

If you want to use a button, here is the code :

<center><a class='btn btn-primary'  href='test.com'>Button</a></center>
4 Likes