Skip to content

Instantly share code, notes, and snippets.

View skazhikadyadya's full-sized avatar
💭
For The Glory Of Satan!

skazhikadyadya

💭
For The Glory Of Satan!
View GitHub Profile
@skazhikadyadya
skazhikadyadya / index.html
Created April 13, 2020 21:38
Same height columns in Bootstrap with Flexbox
<body>
<div class="container">
<h1>Same height columns in Bootstrap</h1>
<div class="row row-flex">
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="content colour-1">
<h3>First column</h3>
<p>This one has a bit longer content</p>
<p>This one has a bit longer content</p>
</div>
@skazhikadyadya
skazhikadyadya / README.md
Created June 30, 2020 22:44 — forked from hofmannsven/README.md
Storing WordPress files and database with WP-CLI on the server.
@skazhikadyadya
skazhikadyadya / gist:40256f912c045e85458967355d7438bc
Created August 29, 2020 00:04
Woocommerce Remove Products Quantity
/**
* @desc Remove in all product type
*/
function wc_remove_all_quantity_fields( $return, $product ) {
return true;
}
add_filter( 'woocommerce_is_sold_individually', 'wc_remove_all_quantity_fields', 10, 2 );