Hi,
i don't have gravity form and i worked out how to fix this error, all you need to do is comment out the line 6 avia_select_unify('select'); in woocommerce-mod. This does resolve the issue however, this cause another problem. The "state" box now looks really odd.
how do we go about fixing this please???
i have the following plugins:
All in one Favicon
Comprehensive Google Map Plugin
Contact Form 7
Select Global Hide/Remove Admin Bar Plugin
Really Simple CAPTCHA
Simple MailChimp Email List Subscriber
Under Construction
WooCommerce
WooCommerce - All in One SEO Pack
WooCommerce Admin Bar Addition
WooCommerce Local Pickup Shipping Method
can you please suggest a resolution ???
Original code:
//improve layout of select dropdowns
function avia_select_unify(select_el)
{
var selects = jQuery(select_el);
//unify select dropdowns
selects.each(function()
{
var el = jQuery(this);
if(el.css('display') == 'none') return;
el.wrap('<span class="avia_style_wrap" />').wrap('<span class="avia_select_unify" />').after('<span class="avia_select_fake_val"></span>');
el.css('opacity',0).next('.avia_select_fake_val').text(el.find('option:selected').text());
el.bind('change', function()
{
el.next('.avia_select_fake_val').text(el.find('option:selected').text());
});
});
}
thank you in advance :)