I see.
I think you have a theme problem because your Webpage isn’t loading the jQuery library on that page (haven’t checked for other pages). To use your JavaScript, which relies on jQuery, the jQuery library needs to first be loaded in the source code, e.g.:
...
<script src="/path/to/jquery.js"></script>
...
// < ![CDATA[
// < ![CDATA[ $(function(){ if ($.cookie('modal_shown') == null) { $.cookie('modal_shown', 'yes', { expires: 1, path: '/' }); setTimeout(function(){ $('#modalPrintbond').modal('show'); }, 5000); } });
// ]]></script>
Do try the plugin though, things might work out but I doubt it. The reason I doubt it is because that bit of code that I identified above is loading too early on in the page. Even if you load jQuery library, that bit of code could load before the library and cause an error. Errors in JavaScript are reverberated down, which means your code will break entirely.
When you try the plugin and you paste your code in, make sure you paste this code in instead:
$ = jQuery;
$(function() {
if ($.cookie('modal_shown') == null) {
$.cookie('modal_shown', 'yes', {
expires: 1,
path: '/'
});
setTimeout(function() {
$('#modalPrintbond').modal('show');
}, 5000);
}
});