Same issue. Related to jQuery error:
jquery.js?ver=1.12.4-wp:2 Uncaught Error: Syntax error, unrecognized expression: a[href*=#]:not([href=#]):not([data-vc-tabs]):not([data-vc-accordion]),._ps2id,a[data-ps2id-api='true'][href*='#'],.ps2id > a[href*='#'],a.ps2id[href*='#']
at Function.ea.error (jquery.js?ver=1.12.4-wp:2)
at ea.tokenize (jquery.js?ver=1.12.4-wp:2)
at ea.select (jquery.js?ver=1.12.4-wp:2)
at Function.ea [as find] (jquery.js?ver=1.12.4-wp:2)
at n.fn.init.find (jquery.js?ver=1.12.4-wp:2)
at new n.fn.init (jquery.js?ver=1.12.4-wp:2)
at n (jquery.js?ver=1.12.4-wp:2)
at page-scroll-to-id.min.js?ver=1.6.8:2
at dispatch (jquery.js?ver=1.12.4-wp:3)
at r.handle (jquery.js?ver=1.12.4-wp:3)
Solved by replacing a[href*=#]:not([href=#]):not([data-vc-tabs]):not([data-vc-accordion])
with a[href*='#']:not([href='#'])
for the Selector(s) in plugin settings.
-
This reply was modified 4 years, 6 months ago by
aktivist. Reason: solved