<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Shipping address error: can&#039;t select state</title>
		<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state</link>
		<description>Support Forum - Topic: Shipping address error: can&#039;t select state</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 13:01:15 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/shipping-address-error-cant-select-state" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-41547</link>
			<pubDate>Tue, 14 Feb 2012 01:19:47 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">41547@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;sorry for the delay, recently some updates were released which should deal with these issues. You can download the newest version of the theme through ThemeForest - free of charge.&#60;/p&#62;
&#60;p&#62;Best regards,&#60;br /&#62;
Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>asmbit on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-36583</link>
			<pubDate>Wed, 04 Jan 2012 16:36:02 +0000</pubDate>
			<dc:creator>asmbit</dc:creator>
			<guid isPermaLink="false">36583@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have change it to &#34;no custom font&#34;, this still doesn't work??&#60;br /&#62;
can you please help?? thank you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e-citron on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-36195</link>
			<pubDate>Fri, 30 Dec 2011 14:12:45 +0000</pubDate>
			<dc:creator>e-citron</dc:creator>
			<guid isPermaLink="false">36195@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have the same issue finally. The boxes in this theme act weird. As I live in Canada, Ontario, the default state is &#34;Ontario&#34; for every one, if someone calculate the shipping cost and changes the country (france doesnt have state for example), Ontario value stays + &#34;state&#34; write in top of it. &#60;/p&#62;
&#60;p&#62;Here is a screenshot: &#60;a href=&#34;http://www.diigo.com/item/image/24p3p/8vy0&#34; rel=&#34;nofollow&#34;&#62;http://www.diigo.com/item/image/24p3p/8vy0&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>asmbit on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-36082</link>
			<pubDate>Thu, 29 Dec 2011 12:25:28 +0000</pubDate>
			<dc:creator>asmbit</dc:creator>
			<guid isPermaLink="false">36082@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;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 &#34;state&#34; box now looks really odd.&#60;/p&#62;
&#60;p&#62;how do we go about fixing this please???&#60;/p&#62;
&#60;p&#62;i have the following plugins:&#60;/p&#62;
&#60;p&#62;All in one Favicon&#60;br /&#62;
Comprehensive Google Map Plugin&#60;br /&#62;
Contact Form 7&#60;br /&#62;
Select Global Hide/Remove Admin Bar Plugin&#60;br /&#62;
Really Simple CAPTCHA&#60;br /&#62;
Simple MailChimp Email List Subscriber&#60;br /&#62;
Under Construction&#60;br /&#62;
WooCommerce&#60;br /&#62;
WooCommerce - All in One SEO Pack&#60;br /&#62;
WooCommerce Admin Bar Addition&#60;br /&#62;
WooCommerce Local Pickup Shipping Method&#60;/p&#62;
&#60;p&#62;can you please suggest a resolution ???&#60;/p&#62;
&#60;p&#62;Original code:&#60;/p&#62;
&#60;p&#62;//improve layout of select dropdowns&#60;br /&#62;
function avia_select_unify(select_el)&#60;br /&#62;
{&#60;br /&#62;
	var selects = jQuery(select_el);&#60;br /&#62;
	 //unify select dropdowns&#60;br /&#62;
    selects.each(function()&#60;br /&#62;
    {&#60;br /&#62;
    	var el = jQuery(this);&#60;br /&#62;
    	if(el.css('display') == 'none') return;&#60;br /&#62;
    	el.wrap('&#38;lt;span class=&#34;avia_style_wrap&#34; /&#38;gt;').wrap('&#38;lt;span class=&#34;avia_select_unify&#34; /&#38;gt;').after('&#38;lt;span class=&#34;avia_select_fake_val&#34;&#38;gt;&#38;lt;/span&#38;gt;');&#60;br /&#62;
    	el.css('opacity',0).next('.avia_select_fake_val').text(el.find('option:selected').text());&#60;br /&#62;
	    el.bind('change', function()&#60;br /&#62;
	    {&#60;br /&#62;
	    	el.next('.avia_select_fake_val').text(el.find('option:selected').text());&#60;br /&#62;
	    });&#60;/p&#62;
&#60;p&#62;     });&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;thank you in advance :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e-citron on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-35491</link>
			<pubDate>Tue, 20 Dec 2011 08:33:40 +0000</pubDate>
			<dc:creator>e-citron</dc:creator>
			<guid isPermaLink="false">35491@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;it's gravity form
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wildrays on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-35441</link>
			<pubDate>Mon, 19 Dec 2011 20:25:33 +0000</pubDate>
			<dc:creator>wildrays</dc:creator>
			<guid isPermaLink="false">35441@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I am running the latest version of WooCommerce. &#60;/p&#62;
&#60;p&#62;I am currently using the WP Google Fonts plugin, but was experiencing this problem even when I de-activated all my plugins, except for WooCommerce. When you mention fonts, what do you mean by using standard fonts? &#60;/p&#62;
&#60;p&#62;This probably is a problem with one of my plugins, maybe Gravity Forms, but I can't figure it out and it didn't clear up after I de-activated (and cleared browser cache, etc) all my plugins.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-35171</link>
			<pubDate>Fri, 16 Dec 2011 15:58:14 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">35171@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;it seems to have something to do with your font settings. Are you also running the latest version of WooCommerce? There's been an update. Try using standard fonts - it works fine for me like this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wildrays on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-35090</link>
			<pubDate>Thu, 15 Dec 2011 21:49:15 +0000</pubDate>
			<dc:creator>wildrays</dc:creator>
			<guid isPermaLink="false">35090@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've de-activated all my plugins except for WooCommerce and I'm still having this problem with FireFox and Chrome on Mac: I can't change the shipping address state.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wildrays on "Shipping address error: can&#039;t select state"</title>
			<link>http://www.kriesi.at/support/topic/shipping-address-error-cant-select-state#post-34897</link>
			<pubDate>Wed, 14 Dec 2011 15:02:42 +0000</pubDate>
			<dc:creator>wildrays</dc:creator>
			<guid isPermaLink="false">34897@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://www.choucashats.com&#34; rel=&#34;nofollow&#34;&#62;http://www.choucashats.com&#60;/a&#62; (WP 3.3)&#60;/p&#62;
&#60;p&#62;I only have the US for a shipping option and free shipping is set up. The country and state work fine for billing address. For the shipping address when I select the US, I can't change the state. &#60;/p&#62;
&#60;p&#62;I'm pretty sure my settings are correct. It seems like this issue popped up when I upgraded to WP 3.3 Anyone else seeing this or see this on my site?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
