tipsytopsy
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Fonts not loaded over HTTPS / SSLSame issue for me. I cannot disable minification completely since my theme has lot many files and I prefer them to be combined dynamically (using w3tc).
If anyone happen to figure out solution for honoring protocol for woff/ttf files, please post a solution here. This hard coded http port issue is only happening in ttf and woff files (other font files probably as well). So probably a bug in the minification code.
Forum: Plugins
In reply to: [WooCommerce] State Selector not working in 2.3.6, in Internet ExplorerOr do what woocommerce dev has done to fix in their branch: https://github.com/woothemes/woocommerce/blob/90a78780be0c96a6b8d4da7b9aac1416d570824b/includes/class-wc-countries.php
Just replace your class-wc-countries.php with the one from github which is the fixed version from 2.3.7
Forum: Plugins
In reply to: [WooCommerce] Checkout page state select dropdown bug in IE11Or do what woocommerce dev has done to fix in their branch: https://github.com/woothemes/woocommerce/blob/90a78780be0c96a6b8d4da7b9aac1416d570824b/includes/class-wc-countries.php
Just replace your class-wc-countries.php with the one from github which is the fixed version from 2.3.7
Forum: Plugins
In reply to: [WooCommerce] Checkout page state select dropdown bug in IE11Or edit this file:
/wp-content/plugins/woocommerce/includes/class-wc-countries.phpAnd for all countries you sell to – comment out the placeholder tag in the state section. I only sell in US so it was easy for me.
For example in line 861, for US:
This:
'US' => array( 'postcode' => array( 'label' => __( 'Zip', 'woocommerce' ), 'placeholder' => __( 'Zip', 'woocommerce' ), ), 'state' => array( 'label' => __( 'State', 'woocommerce' ), 'placeholder' => __( 'State', 'woocommerce' ), ) ),
becomes
'US' => array( 'postcode' => array( 'label' => __( 'Zip', 'woocommerce' ), 'placeholder' => __( 'Zip', 'woocommerce' ), ), 'state' => array( 'label' => __( 'State', 'woocommerce' ), /*'placeholder' => __( 'State', 'woocommerce' ),*/ ) ),
Forum: Plugins
In reply to: [WooCommerce] State Selector not working in 2.3.6, in Internet ExplorerOr edit this file:
/wp-content/plugins/woocommerce/includes/class-wc-countries.phpAnd for all countries you sell to – comment out the placeholder tag in the state section. I only sell in US so it was easy for me.
For example in line 861, for US:
This:
'US' => array( 'postcode' => array( 'label' => __( 'Zip', 'woocommerce' ), 'placeholder' => __( 'Zip', 'woocommerce' ), ), 'state' => array( 'label' => __( 'State', 'woocommerce' ), 'placeholder' => __( 'State', 'woocommerce' ), ) ),
becomes
'US' => array( 'postcode' => array( 'label' => __( 'Zip', 'woocommerce' ), 'placeholder' => __( 'Zip', 'woocommerce' ), ), 'state' => array( 'label' => __( 'State', 'woocommerce' ), /*'placeholder' => __( 'State', 'woocommerce' ),*/ ) ),