Skip to content

Instantly share code, notes, and snippets.

@CNick
Last active January 10, 2018 01:10
Show Gist options
  • Save CNick/796b9e897f4a6b7ff9137bdd8c5ad42b to your computer and use it in GitHub Desktop.
Save CNick/796b9e897f4a6b7ff9137bdd8c5ad42b to your computer and use it in GitHub Desktop.
/* Replace Shipping with Delivery on cart & checkout pages */
/* Hide Shipping table heading */
table.shop_table_responsive tbody .shipping th,
.shipping th {
visibility: hidden;
}
/* Insert Delivery */
.shipping th:before {
content: 'Delivery';
visibility: visible;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment