Hi,
The TypeError you are saying: $ ('virtuemart-admin-area toggler..') vm2admin ('toggle').;
is a conflict error, no doubt about it. And this function: vm2admin() is not a function that used by our template, it is used by Virtuemart itself. But the problem (originally) in your website is caused by bootstrap.min.js (line 6)
help with this change.
please
Because bootstrap.min.js (line 6) is using .on() function, which has presented after jQuery1.7+, for the old jQuery version, this function should be replaced with:
.live()
.on(..... should be replaced with .live(....
More info: api.jquery.com/on/
The .on() method attaches event handlers to the currently selected set of elements in the jQuery object. As of jQuery 1.7, the .on() method provides all functionality required for attaching event handlers. For help in converting from older jQuery event methods, see .bind(), .delegate(), and .live(). To remove events bound with .on(), see .off(). To attach an event that runs only once and then removes itself, see .one()
thanks