This project uses the Gitflow Worflow.
You can learn more here
There are two branches Master and Dev. You will only need to concern yourself with the Dev branch.
The Dev branch will be used to integrate all the themes changes/features.
This project uses the Gitflow Worflow.
You can learn more here
There are two branches Master and Dev. You will only need to concern yourself with the Dev branch.
The Dev branch will be used to integrate all the themes changes/features.
*~ | |
.DS_Store | |
.svn | |
.cvs | |
*.bak | |
*.swp | |
Thumbs.db | |
# wordpress specific | |
wp-config.php |
/** | |
* Hides checkout fields based on the products in the cart | |
* | |
* @param array $fields | |
* @return array | |
*/ | |
function conditional_checkout_fields_products( $fields ) { | |
$cart = WC()->cart->get_cart(); | |
foreach ( $cart as $item_key => $values ) { |
/** | |
* This plugin depends on Piklist | |
* | |
* Is the piklist plugin activated? | |
* | |
* @since 1.0.0 | |
*/ | |
public function is_piklist_activated() { | |
if( is_admin() ) { |
[ | |
{ | |
"Origin": "Antigua", | |
"Destination": "Barbados", | |
"Base Miles": "831" | |
}, | |
{ | |
"Origin": "Antigua", | |
"Destination": "Grenada", | |
"Base Miles": "831" |
$col: calc((1200px - (11 * 10px)) / 12); // ($wrapperWidth - ($numberOfGutters * $gutterWidth)) / $numberOfColumns | |
.grid { | |
display: grid; | |
} | |
.grid-12 { | |
display: grid; | |
grid-template-columns: minmax(20px, 1fr) repeat(12, minmax(auto, $col)) minmax(20px, 1fr); | |
grid-gap: 10px; |