41 comments found.
VERY GOOD PRODUCT! EXCELLENT AND RESPONISIVE SUPPORT!
I am loading the files as follows:
<!- SUPER NOTICE ->
<link href=”superNotice/superNotice/jquery.superNotice.css” rel=”stylesheet”>
<script src=”superNotice/superNotice/jquery-1.8.2.min.js”></script>
<script src=”superNotice/superNotice/jquery-ui-1.9.0.custom.min.js”></script>
In the body, I am calling the script as follows:
Click me
<script>
function notice(){
$("body").superNotice({
autoClose: false,
buttons: [
{
label: "REGISTER NOW!",
href: "http://www.naturalelementhomes.com/register.html",
target: "_self",
icon: "info"
}
],
closable: "button",
html: "We are people people who truly want to help others realize their dream home. We find happiness in serving others, and we make extraordinary homes. We love what we do, and we're good at it. We strive to exceed your expectations, and we encourage you to dream big! ",
icon: "idea",
position: "bottomRight",
theme: "oldoffice",
title: "TESTING, TESTING, 1-2-3",
titleIcon: "advertisment",
width: 360
});
}
</script>
CAN YOU HELP ME FIGURE THIS OUT? THANK YOU
You have a conflict with other js lib . Please use “jQuery” instead of ”$” . jQuery(“body”).superNotice(...);
Need help please. Nothing happens on click…..
My testing web page is here: http://www.naturalelementhomes.com/index-testing-5-4-13.htmlI am loading the JS and CSS as follows: <link href=”superNotice/superNotice/jquery.superNotice.css” rel=”stylesheet”> <script src=”superNotice/superNotice/jquery-ui-1.9.0.custom.min.js”></script> <script src=”superNotice/superNotice/jquery.superNotice.min.js”></script>
I am calling the javascript here:
Click me
<script>
function notice(){
$("body").superNotice({
html: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
icon: "info"
});
}
</script>
Hello,
Thanks for purchase. You use an old jQuery version (1.4) . Please try to replace it by the version 1.8.2 or + .
If you need more help, you can contact me via email, from my profile .
Hi I see that this looks great
BUT can I somehow use the generator as backend so I dont have to change my index.html page
Im think that the generator somehow can write the new notify in some .js and automatic be loaded in my index.page
REGARDS Flemming
Hello,
This generator don’t do that . But if you want you can do it yourself using js and PHP : the source of the generator is include in the package .
I did something like that on the plugin “jquery Html5 Buttons”. But here, the customization / integration is already very fast and easy .
Regards
Hi, can I put a contact form inside the window? Thanks!
Hi,
Yes of course . Look at the “Fold effect, with custom form and button” demonstration .
You can put any html code in the notifications .
Regards,
Great, But I have my form already. Can I use it?
Yes, it’s just an example .
Hi loopus I have a problem and if you can help me I will appreciate, I upload my index.html here http://ul.to/vbhx0p60 , then you can check what I did because is not working and I don’t know why. I copy the supernotice folder to where I have the index.html which is in other folder and is not work.
Like I want just to open the index automatic open the popup with a image with a link.
Thank you very much.
Hello,
Just replace the plugin initialization by this :
<script>
$(document).ready(function(){
$("body").superNotice({
html: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
icon: "info"
});
});
</script>
Hello, I copy in the index.html and doesn’t work 
Please, can you put it online and send me the url ?
yes I can but i give you the url by mp?
by email, from my profile . Thanks
Ok.
Hi there! Can this plug-in be configured to automatically pop-up on page load? Thanks! Matthew
Hello,
Yes, the notification appears when it is initialized :
$(document).ready(function(){
$('body').superNotice('Hello World !');
});
That’s great thank you, and the plug-in is beautiful. I will be purchasing now. Is there any way to center the pop-up?
Yes, I did a special version for this. Contact me via email after purchase, I’ll send it to you .
With this special version, you can use position: “center”, but notifications can’t be accumulated if they are centered .
Hi loopus,
is it possible to create a e-mail popup form in the center of the page so that the users can write us a e-mail when they click a specific button?
If yes, could you please make a demo of it?
Thanks. 
Hello,
I have an other version, with centered position, but notice can’t be accumulated when they are centered. I can send it to you if you buy license .
You can follow the example of “Fold effect, with custom form and button”, on live page (replace input field by textarea).
Regards,
Thanks for your fast reply. Will write you an eMail. 
Amazing plugin! 
Just wanted to report that with a little help of a nice WP plugin called ‘Preserved HTML Editor Markup’ it works now very nicely here using WordPress v3.5!
Cheers,
keyhanjun
Please email me the version that centers on page
Hello,
Thanks for your purchase .
No problem, please contact me via my profile (I haven’t your email adress) .
Hi -
Can I use this in wordpress to create a popup wiht a mailchimp sign up form – perhaps using mailchimp embed code?
Hello,
Yes, you need to import the plugin libraries (css and js) in the head.
Then edit mailchimp js file : mailchimp/js/mailchimp.js , and add your superNotice in the mc_success function :
function mc_success(data) {
$('body').superNotice("Your are now registered !");
...
}
Regards,
I can not get the “Fold effect, with custom form and button” to work on my test site. Other examples works fine. Is the code you give in this example correct?
R
Hello,
Yes it works, You can test directly index.html (from package) and see the effect .
Can you contact me from my profile and send me the url of your site ?
Thanks
But there is a problem with that solution. If the mainPage div is long and scrollable, if your at the bottom and you got notifications, ull not see them until u scroll up, unlike the jQuery(‘body) its poping up where u are.
another question, can you use html inside the growl? img tags is coming, but tags are showing as text.
Yes, when the target in the body, the records are in fixed positions, but not with another container (otherwise they overwrite the header ) .
You can put any html code in the “html” parameter. Please contact me from my profile and send me the url, I’ll help you .
Hi,
The site im doing has a fixed header of 60px height, so the 1st notice is always coming behind it.
Is there anyway to start the 1st notice below it, lets say start at 80px instead of right at the top?
If you can add an option it would be great.
Thanks.
Hello,
Thanks for purchase.
You can use superNotice with another container that body. Like that :
<div id="header"> My header here </div>
<div id="mainPage"> My main page here </div>
<script>
$("document").ready(function(){
$("#mainPage").superNotice("Hello World !");
});
</script>
Regards,
Thanks that worked
Hi, looks like I can’t get the code running on my WP site. I use a plugin (Code Insert Manager) to insert the code generated by the generator. But instead of showing the notice, it shows the code itself. Included the js files in the header as explained in the instruction. What might be the problem?
Hello,
I don’t know this plugin, but I can try to help you. Please send me a message with the url, from my profile .
Regards
In the html file the ”<link href=”superNotice/superNotice.css” rel=”stylesheet”>” doesnot exist in the superNotice file. It is named “jquery.superNotice.css” Is this suppose to be renamed? I cant get the superNotice to funtion like it is suppose too. Can you help with this ?
Thank you, I corrected the documentation .
Regards,
I have one more question… Where exactly does the registard e-mail print to when the user fills in the form an sends it?
Nothing, it’s just an example !
You can create any html content in your notification, such as forms.
Regards
I want the window to pop up in the center of my page, what do I need to modify to make this happen??
Hello,
Thanks for your purchase.
This is not the concept of this plugin, but I did a special version for you, which can be used as it :
$("body").superNotice({
position: "center",
html: "I'm a centered notification"
});
But centered notifications can’t be accumulated like others .
Please send me an email from my profile, and I will send you this personalized version.
Regards,