Skip to content

Instantly share code, notes, and snippets.

View AtesDANIS's full-sized avatar
🌴
Life is vacation

Ateş DANIŞ AtesDANIS

🌴
Life is vacation
View GitHub Profile
@berkocan
berkocan / Hava Durumu (Api) Json Kodu.php
Last active November 28, 2021 21:23
Hava Durumu (Api) Json Kodu | Hava Durumu Api
Hava durumunu json ile api olarak sitenize eklemek için aşağıdaki kodları kullanabilirsiniz. ▼☟↓
<?php
$JSON = json_decode(file_get_contents('https://api.genelpara.com/embed/hava-durumu.json'), true);
?>
<ul>
<li>
<span>İstanbul</span>
<span>Hava: <?php echo $JSON['istanbul']['hava']; ?></span>
<span>Sıcaklık: <?php echo $JSON['istanbul']['sicaklik']; ?></span>
@JeroenSormani
JeroenSormani / hide-shipping-if-free-shipping-is-available.php
Last active October 20, 2022 09:36
New - Hide paid shipping rates when free is available. DOES show Local Pickup. Considered ANY shipping rate that is $0 as free (so the 'Free shipping' shipping method is not a requirement)
<?php
/**
* Copy from here to your (child) themes functions.php
* Recommended to do so via FTP.
*/
/**
* Hide all but the free shipping options when free is available.
*