Skip to content

Instantly share code, notes, and snippets.

View jasperfrontend's full-sized avatar
🏠
WFH

Jasper jasperfrontend

🏠
WFH
View GitHub Profile
@vanbo
vanbo / wc-css-make-storefront-product-tabs-horizontal
Created October 27, 2017 11:33
WooCommerce: CSS to make Storefront product tabs horizontal again
.product .woocommerce-tabs ul.tabs {
width: 100%;
float: none;
margin-right: 5.8823529412%;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
list-style: none;
padding: 0 0 0 1em;
margin: 0 0 1.618em;
@nichtich
nichtich / csv2quickstatements.pl
Created August 10, 2017 09:00 — forked from lunohodov/ral_classic.csv
RAL Standard Color Table (CSV)
#!/usr/bin/env perl
#
# Import RAL color table to Wikidata via QuickStatements
#
use v5.14;
my %color = (
de => 'Farbe',
en => 'color',
fr => 'couleur',
@dryan1144
dryan1144 / woocommerce-functions.php
Last active December 25, 2018 15:45
Change WooCommerce order confirmation text in
<?php
add_filter( 'woocommerce_thankyou_order_received_text', 'my_custom_order_received_text' );
function my_custom_order_received_text() { ?>
<div class="order-received-text">
<h5>Your Order Was Successful!</h5>
<p>Congratulations and a huge thank you for registering with us!</p>
<p>You will receive a confirmation email shortly. If you have questions, please do not hesitate to <a href="/contact">contact us</a></p>
<p>Thanks again!</p>