04/24/2015 at 3:08 pm
#332351
Keymaster
@ Neeraj
re: However, this affected my other plugins features
This can not possibly affect other plugins because it is being implemented by the theme. The theme author should have limited this implementation its own select and drop downs in order to prevent these types of conflicts. I suspect as UniformJS get older and older it’ll break things more often for you. If I may, I highly suggest contacting the theme’s support team to see if they have an update plan in place.
Since, you do not want to disable this, you can try excluding the drop down in cMap. Change it to:
//CUSTOM FORM ELEMENTS
$('select, input[type=radio],input[type=checkbox],input[type=file]').not('#cn-cmap .cn-enhanced-select').uniform();
OR
//CUSTOM FORM ELEMENTS
$('select[class!="cn-enhanced-select"], input[type=radio],input[type=checkbox],input[type=file]').uniform();
