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
https://adambalee.com/search-wordpress-by-custom-fields-without-a-plugin/ |
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
$(document).on('mouseenter', '[data-toggle="tab"]', function () { | |
$(this).tab('show'); | |
}); |
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
<div class="galeria"> | |
<a href="#link"> | |
<div id="kafel"> | |
<div id="gallery-hover-content"> | |
Only show this when hovering parent | |
</div> | |
</div> | |
</a> | |
</div> |
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
https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/ |
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 echo wc_price($product->get_price_including_tax()); ?> | |
/// function above is decrapated, used this: | |
<?php | |
$global; | |
$price = $product->get_regular_price(); | |
$suffix = get_woocommerce_currency_symbol(); | |
echo wc_get_price_including_tax( $product, array('price' => $price) ) . $suffix; |
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
https://dominikroszkowski.pl/2017/03/manualne-dodanie-certyfikatu-ssl-od-lets-encrypt-bez-roota-na-serwerze/ |
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
https://getbootstrap.com/docs/4.0/utilities/display/ |
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
/*<h1> | |
<a href="" class="typewrite" data-period="500" data-type='[ "Hi, Im Si.", "I am Creative.", "I Love Design.", "I Love to Develop." ]'> | |
<span class="wrap"></span> | |
</a> | |
</h1>*/ | |
var TxtType = function(el, toRotate, period) { | |
this.toRotate = toRotate; | |
this.el = el; | |
this.loopNum = 0; |
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
<div class="container"> | |
<div class="row"> | |
/// mobile-first! | |
<div class="col-3 col-md-6"> | |
<div class="card card-body">1</div> | |
</div> | |
<div class="col-6 col-md-12 order-2 order-md-12"> ///kolejność order-*-* | |
<div class="card card-body">3</div> | |
</div> | |
<div class="col-3 col-md-6 order-3"> |