Good day! Such a question on WordPress. If you open the page in source view mode, then at the end of the page there is such a piece of code:
<!— fancybox —> <link rel="stylesheet" type="text/css" href="http://centr-schastja.ru/wp- content/plugins/wppage/js.." media="all"/> <script src="http://code.jquery.com/jquery-migrate-1.2.1.js"></script> <script type="text/javascript" src="http://centr-schastja.ru/wp- content/plugins/wppage/js.."></script> <script type="text/javascript"> jQuery(function ($) { $('.ps_make_order').fancybox({ 'padding': '20', 'autoScale': false, 'type': 'inline', 'href': '#order_popup' }); $('a[href$=".jpg"],a[href$=".png"],a[href$=".gif"]').fancybox(); }); </script> <!— //fancybox —> In the same place further it hooks jquery and wppage. I need to change something in this text, where the VP clings to this code?
wp_footer()function - tutankhamunwp_footer. In particular, scripts registered bywp_enqueue_script(). In your theme (and, possibly, in plugins), you need to look for hooksadd_action('wp_footer', ...); - tutankhamun