Hello!
I was able to develop a solution to my problem.
To operate the two plugins: Fancybox for WP and Sticky Notification must be in the head and changing the order of jQuery
SOLUTION
The WordPress header.php file
Shortly after the start tag Head put the code required to run the plugin Sticky Notification:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"><!--mce:0--></script>
just before the end of the head tag put this code:
<? php
if (is_singular () && get_option ('thread_comments'))
wp_enqueue_script ('comment-reply');
wp_head ();
?>
Now it works!
Here a link to the page:
https://www.bajkowyswiat.gniezno.pl/galeria/okolica
Yours!
Jacek