Hi, I have a problem when I go to the cart or the user account, the fields names disappear when the mouse go over them.
I am using gantry hydrogen for my template, you can see a video there : https://photos.app.goo.gl/xErbuiB0SByGYv843
Does anyone have an idea to help me ?
Phoca Cart » User Account Layout
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Phoca Cart » User Account Layout
Hi, is the Mootools library loaded on that site? Mostly this can happen when Bootstrap/jQuery is in conflict with Mootools
Jan
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Member
- Posts: 43
- Joined: 08 Oct 2017, 14:31
Re: Phoca Cart » User Account Layout
Hi, yes Mootools library is loaded
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Phoca Cart » User Account Layout
So this seems to be the conflict there.
There are different techniques how to prevent from this conflict, see example (this prevents from missing the top menu items):
But of course the best method is to not load the mootools (if this is possible)
Jan
There are different techniques how to prevent from this conflict, see example (this prevents from missing the top menu items):
Code: Select all
if (typeof MooTools != 'undefined') {
var mHide = Element.prototype.hide;
Element.implement({
hide: function() {
if (this.hasClass("dropdown")) {
return this;
}
if (this.hasClass("hasTooltip")) {
return this;
}
mHide.apply(this, arguments);
}
});
}
Jan
If you find Phoca extensions useful, please support the project