Hi,
It would be better to include file paths (eg. image paths) relative to root instead of relative to file. I mean instead of including them as images/x.png , it would be better to include as **/**images/x.png.
In my case, I created custom urls using .htaccess so a url like https://dilekita.com/icin-gidilir/tum-aktiviteler which redirects to a php file. However, the functions.js file includes plugin files as js/ so it trys to include plugin files as https://dilekita.com/icin-gidilir/js/xxx.js . The proper way should be including them as **/**js/ so it will look up the file in the root of website as https://dilekita.com/js/xxx.js.
Actually, I gave an example but it applies to all js and css files where any file path included.
Hope, I make it clear. :)
