• Resolved bramvds

    (@bramvds)


    Hi,

    Are these meta keys from this plugin?
    wholesale_customer_have_wholesale_price
    wholesale_customer_wholesale_price
    wholesale_customer_variations_with_wholesale_price

    If so, i am unable to remove them, even in sql with a command like this:
    DELETE FROM wp_postmeta WHERE meta_key LIKE ‘%wholesale_customer_%’

    Thanks

    • This topic was modified 2 years, 1 month ago by bramvds.
Viewing 1 replies (of 1 total)
  • Plugin Support Fauzan Azizie

    (@fauzanade)

    Hi @bramvds,

    I assume that you want to remove those metakeys from your database?

    Please kindly run this SQL command on your database:

    DELETE
     FROM wp_postmeta
     WHERE wp_postmeta.meta_key LIKE '%_wholesale_price'
      OR wp_postmeta.meta_key LIKE '%_have_wholesale_price'
      OR wp_postmeta.meta_key LIKE '%_wholesale_minimum_order_quantity'
      OR wp_postmeta.meta_key LIKE '%_wholesale_order_quantity_step'
      OR wp_postmeta.meta_key = 'wwpp_product_wholesale_visibility_filter'
      OR wp_postmeta.meta_key = 'wwpp_post_meta_quantity_discount_rule_mapping'

    Please kindly backup your database before running that command.

Viewing 1 replies (of 1 total)
  • The topic ‘meta keys’ is closed to new replies.