This results in an url of http://learn.neurotechedu.com/learn.neurotechedu.com/assets/tipuesearch/tipuesearch_content.js instead of the location of the javascript object which is actually http://learn.neurotechedu.com/assets/tipuesearch/tipuesearch_content.js
So looking in your _config.yml I see you have url and baseurl are set like this:
However, the site appears to be hosted at learn.neurotechedu.com so the url should reflect that you are hosting at the root domain. And baseurl should be blank.
You don't need to use baseurl if you're serving your site from the domain root: https://byparker.com/blog/2014/clearing-up-confusion-around-baseurl/
Looking at the source of your search page I noticed that
/learn.neurotechedu.com
is being prepended to your links. For example,This results in an url of
http://learn.neurotechedu.com/learn.neurotechedu.com/assets/tipuesearch/tipuesearch_content.js
instead of the location of the javascript object which is actuallyhttp://learn.neurotechedu.com/assets/tipuesearch/tipuesearch_content.js
So looking in your
_config.yml
I see you haveurl
andbaseurl
are set like this:However, the site appears to be hosted at
learn.neurotechedu.com
so the url should reflect that you are hosting at the root domain. And baseurl should be blank.Hope that helps!