Why I can’t add a script-code into theme-settings without 403-forbidden?
Solution: Because the theme JavaScript is not in: /js/sticky-menu.js Rather, it’s in your theme folder (as your theme name is lifestyle-pro, as found from your site’s HTML): /wp-content/themes/lifestyle-pro/js/sticky-menu.js So your <script> CODE should be: <script data-cfasync=”false” src=”https://wordpress.stackexchange.com/wp-content/themes/lifestyle-pro/js/sticky-menu.js”></script> Bonus: This can be made better with the use of the WordPress function get_stylesheet_directory_uri(). In that case, your … Read more