This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* Free shipping for non-stockists | |
| * Adapted from Sean Barton's snippet | |
| * http://www.sean-barton.co.uk/2014/04/wordpress-snippet-woocommerce-free-shipping-role/#.VW_FaVyqpBc | |
| * Click "Clear transients" (WooCommerce > System Status > Tools) if it's not working. | |
| */ | |
| add_filter( 'woocommerce_package_rates', 'my_woocommerce_set_free_shipping_for_certain_users', 10, 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.2.4) | |
| // ---- | |
| .woo_sc_links { | |
| margin: 0 0 30px; | |
| } | |
| .woo_sc_link { | |
| width: auto!important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ----------------------------- */ | |
| /* ADMIN CSS | |
| /* Pop this in your theme's functions.php file | |
| /* ----------------------------- */ | |
| add_action('admin_head', 'my_custom_css'); | |
| function my_custom_css() { | |
| echo '<style> | |
| .wf-wrap p.submit { |
NewerOlder