Skip to content

Instantly share code, notes, and snippets.

View PatH007's full-sized avatar
💭
Divi

Patrick PatH007

💭
Divi
View GitHub Profile
@SJ-James
SJ-James / etModules-icon-codes.css
Created March 21, 2018 21:33
A list of the codes for Divi's built in icon collection
/* example of use */
h1:before {
font-family: 'etModules';
content: "\24";
}
/* codes */
.arrow_up:before {
content: "\21";
@woogists
woogists / wc-hide-all-shipping-if-free-shipping-is-available.php
Last active May 14, 2024 12:47
[General Snippets][Hide other shipping methods when “Free Shipping” is available] Hides all other shipping methods but free_shipping if it’s available. Compatible with Shipping zones.
/**
* Hide shipping rates when free shipping is available.
* Updated to support WooCommerce 2.6 Shipping Zones.
*
* @param array $rates Array of rates found for the package.
* @return array
*/
function my_hide_shipping_when_free_is_available( $rates ) {
$free = array();
foreach ( $rates as $rate_id => $rate ) {