Query-1:
UPDATE
wp_wc_product_meta_lookup
SET
min_price =(min_price - min_price * .13)
WHERE 1;
Query-2;
UPDATE
wp_wc_product_meta_lookup
SET
max_price =(max_price - max_price * .13)
WHERE 1;
Query-1:
UPDATE
wp_wc_product_meta_lookup
SET
min_price =(min_price - min_price * .13)
WHERE 1;
Query-2;
UPDATE
wp_wc_product_meta_lookup
SET
max_price =(max_price - max_price * .13)
WHERE 1;
phpMyAdmin
portal{prefix}_posts
and run the SQL statement as shown.DELETE relations.*, taxes.*, terms.*
FROM metro4u_term_relationships AS relations
INNER JOIN metro4u_term_taxonomy AS taxes
ON relations.term_taxonomy_id=taxes.term_taxonomy_id
INNER JOIN metro4u_terms AS terms
ON taxes.term_id=terms.term_id
WHERE object_id IN (SELECT ID FROM metro4u_posts WHERE post_type IN ('product','product_variation'));
DELETE FROM metro4u_postmeta WHERE post_id IN (SELECT ID FROM metro4u_posts WHERE post_type IN ('product','product_variation'));
DELETE FROM metro4u_posts WHERE post_type IN ('product','product_variation');
Note: "metro4u" is a prefix. Set your Database Table prefix
scp file_name.zip username@server_ip/server_address:/directory_path