preserve url parameters from affliliate sites

Just in case somebody else has a similar problem I managed to solve it using this plug in https://offers.sportingblog.gr/wp-admin/plugin-install.php?tab=plugin-information&plugin=header-and-footer-scripts and then I added on the footer script the following code <script type=”text/javascript”> function getQueryParams(qs) { qs = qs.split(“+”).join(” “); var params = {}, tokens, re = /[?&]?([^=]+)=([^&]*)/g; while (tokens = re.exec(qs)) { params[decodeURIComponent(tokens[1])] = decodeURIComponent(tokens[2]); … Read more

WordPress loads whole jQuery UI library

jQuery-UI is included in every default WP installation. Whether it is loaded depends on your theme and/or plugin(s). Three Options: live with it disable plugins one by one (and switch theme), figure out which is responsible and whether that’s needed manually deregister it (something, i.e. a plugin, will probably break)

Use of Javascript with Dojo/Dijit on a WordPress page

You’d be much better off creating a custom page template, pasting your HTML into the file, then simply attaching the template to a page in the admin. WordPress applies a lot of filtering on post/page content, and it’s probably wreaking havoc with your code (not to mention you’ve got things there that belong in the … Read more