Skip to content

Instantly share code, notes, and snippets.

View Darkwing371's full-sized avatar
💭
Thinking …

Darkwing371

💭
Thinking …
View GitHub Profile
@Darkwing371
Darkwing371 / gist:aec59cf08965296473a8
Created February 15, 2015 15:39
sconv - Convert Files From One Charset Into Another (Linux Shell Script)
#!/bin/sh
# sconv - Sophisticated Charset Converter
FROM=iso-8859-1
TO=utf-8
IN=(html htm php css scss sass txt csv)
TOTAL=0
CONVERTED=0
@Darkwing371
Darkwing371 / woo-bulkset-swatches.php
Created June 13, 2013 16:19
BULKSET SWATCH TYPE OPTIONS FOR WOOCOMMERCE’S PLUGIN 'VARIATION SWATCHES AND PHOTOS' • It’s 'a one-time action' • Run the script inside of a test plugin, or wrap it in an AJAX action, or … – you decide BUT FIRST: • Read the code • Understand the code • Make it you own • Use it in a test environment • If it acts like expected: use it in your live…
<?php
/* BULKSET PRODUCT SWATCH OPTIONS
/* FOR WOOCOMMERCE’S PLUGIN 'VARIATION SWATCHES AND PHOTOS' */
/* PROVIDE THE DESIRED TAXONOMY WHERE SWATCH OPTION CHANGE SHALL APPEAR */
$taxonomy = 'pa_yourdesiredtaxname';
/* NOTE FOR SAFETY REASONS */