great list of resources on Haskell compiled by @leroux
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 | |
//* Do NOT include the opening php tag | |
//* Change default global labels of Download and Downloads to Product and Products | |
add_filter('edd_default_downloads_name', 'b3m_edd_product_labels'); | |
function b3m_edd_product_labels( $labels ) { | |
$labels = array( | |
'singular' => __('Product', 'b3m'), | |
'plural' => __('Products', 'b3m') |
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
.gform_wrapper { | |
ul { | |
@extend .list-unstyled; | |
} | |
li { | |
@extend .form-group; | |
} |
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
/* ------------------------------------ | |
Gravity Forms | |
---------------------------------------*/ | |
.gform_wrapper ul { padding-left: 0; list-style: none } | |
.gform_wrapper li { margin-bottom: 15px } | |
.gform_wrapper form { margin-bottom: 0 } |
NewerOlder