This spreadsheet allows you to see the corresponding Shopify ID to a Google Taxonomy ID.
For some reason, Shopify decided to use their own unique ID's instead of the de facto Google ID's, which causes problems for bulk operations.
<?php | |
// Place snippet in functions.php | |
// Purge pantheon & wp cache on post save (not suggested for sites with high traffic) | |
add_action('save_post', function() { | |
if ( function_exists( 'pantheon_clear_edge_all' ) ) { | |
pantheon_clear_edge_all(); | |
} | |
wp_cache_flush(); |