at path:
ROOT
/
wp-content
/
plugins
/
woo-variation-swatches
/
uninstall.php
run:
R
W
Run
assets
DIR
2026-02-09 12:00:20
R
W
Run
images
DIR
2026-02-09 12:00:21
R
W
Run
includes
DIR
2026-02-09 12:00:21
R
W
Run
languages
DIR
2026-02-09 12:00:21
R
W
Run
README.txt
45.94 KB
2026-02-09 12:00:21
R
W
Run
Delete
Rename
changelog.txt
1.67 KB
2026-02-09 12:00:21
R
W
Run
Delete
Rename
uninstall.php
726 By
2026-02-09 12:00:21
R
W
Run
Delete
Rename
woo-variation-swatches.php
6.09 KB
2026-02-09 12:00:21
R
W
Run
Delete
Rename
wpml-config.xml
232 By
2026-02-09 12:00:21
R
W
Run
Delete
Rename
error_log
up
📄
uninstall.php
Save
<?php /** * Uninstall plugin */ // If uninstall not called from WordPress exit. defined( 'WP_UNINSTALL_PLUGIN' ) || die( 'Keep Silent' ); global $wpdb; // Change to select type. $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->prefix}woocommerce_attribute_taxonomies SET `attribute_type` = %s WHERE `attribute_type` != %s", 'select', 'text' ) ); // Remove Option. delete_option( 'woo_variation_swatches' ); // Site options in Multisite. delete_site_option( 'woo_variation_swatches' ); // Delete term meta. $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->termmeta} WHERE meta_key IN (%s, %s)", 'product_attribute_color', 'product_attribute_image')); // Clear any cached data that has been removed. wp_cache_flush();