I wish to hide this information, because it is useless :

enter image description here

有帮助吗?

解决方案

You can just hide using CSS.

Put this code you css file

.swatch-attribute-label { z-index: 99999;}
.swatch-option-tooltip {    max-width: 0px !important;    max-height: 0px !important;    overflow:hidden;    min-height: 0px !important;    min-width: 0px !important; border:none !important;    background:transparent !important; 
}

OutPut:-

enter image description here

Hope this help you

Thanks ...

许可以下: CC-BY-SA归因
scroll top