Hello again,
The issue is not with the smartslider, as it works flawlessly across the site with no errors or issues, except for the page with breezing forms.
In your previous response to me you removed the full line of code in the error that points to the breezingform file which is where the problem is:
at mootools-more.js:5
is actually: /wp-content/plugins/breezing-forms/platform//media/system/js/mootools-more.js:5
None the less I did contact smartslider and they provided me with the fix to your code that you need to correct:
Breezingforms uses an outdated JavaScript library. Mootools overwrites the native .bind() method which can cause a lot of conflict.
EDIT - there are actually 2 instances in the mootools-more.js file that need to be deleted:
delete Function.prototype.bind,
and
delete Function.prototype.bind;
Note: the first instance has a comma , at the end. the second instance has a simicolon at the end of it.
To fix this issue open /wp-content/plugins/breezing-forms/platform//media/system/js/mootools-more.js and delete the following text
delete Function.prototype.bind;
Is it possible that you can make this a permanent fix so that breezingform updates do not overwrite the changes?
Thank you for your help.