hi, cool plugin.
what is the exactly code to insert inside php pages?
<?php $content = "<h3>This is the content</h3><p>And this is some more</p>"
jq_notify($content, "default", 2000, 500, ); ?>
where and what is the php tags?
]]>The notification is great, but it pops up each time someone visits a specific category.
Could you have a tick or an option to close forever, or only show once?
Thanks.
]]>I would like to see the word “Close” next to the ‘x’ to close the notifier. Or maybe an option of different styles of ‘X’s’. The ‘X’ in the little white box is difficult to see if the background of the notifier is white, or light.
Auto-hide is an option, but is not ideal for my situation.
]]>The description says I can use this for when someone first visits my site… I don’t see a way in the settings to accomplish this. How can I do this?
]]>i tried to include your php code to my single post template
i tried it different ways but it doesn’t work
$content = "<h3>This is the content</h3><p>And this is some more</p>"
jq_notify($content, "default", 2000, 500, );
and
<?php $content = "<h3>This is the content</h3><p>And this is some more</p>"
jq_notify($content, "default", 2000, 500, ); ?>
so what am i doing wrong here?
thanks
]]>Hello, this plugin is great and exactly what I was trying to find.
However, I ran into a couple “issues”.
First off, using the template code, it wasn’t letting me change any settings such as style. I found in the code that it always just uses $options[‘style’], etc and doesn’t take into account the variables being passed. I modified that code to check like
$style = isset($style) ? $style : $options['style'];
for each option and then calling template_tag like
$jquery_notification->template_tag($content, $style, $speed, $delay);
Also, the box would never automatically hide after the set delay ( even after modifying the above to use my passed values ). Maybe a jQuery version issue or something? Not sure, but I added this to the document.ready code in script.js
setTimeout(function(){
$('.jqnm_message').animate({top: -$('.jqnm_message').outerHeight()}, parseInt(jqnm_script_vars.speed));
},jqnm_script_vars.delay);
Again, thanks for making this and except for the above minor issues, at least for me, works like a charm. Hope the above helps anyone else.
]]>I have a lot of other plugins and jquery elements on my site. When I install this plugin, there is an issue that conflicts with the other elements. Like carousel and other modal items. Any ideas to resolve?
]]>What would be really nice is to have an Admin interface.
I’d like to use this to _only_ display across my bbPress Forums which use custom post types.
Like a lot of people, fiddling with templates is quite cumbersome and time consuming, not to mention having these overwritten on an update.
Thoughts?
]]>