Taxonomy/Term and Role based Discounts for WooCommerce PRO add-on Doc. and FAQ

Back to Taxonomy/Term and Role based Discounts for WooCommerce PRO add-on

Support

How to request technical support?

If the issue you need technical support with is not covered on this page, click the link next to the license key, on the plugin settings, and fill out the ticket with your request.

Where do I report security vulnerabilities found in this plugin?

You can report any security bugs found in the source code of this plugin through the Patchstack Vulnerability Disclosure Program.

The Patchstack team will assist you with verification, CVE assignment and take care of notifying us.

Licensing

How to transfer the license to another domain?

You should ask for the domain change in your customer area, next to the original order details.

After you get the reply from us stating that the license key is free, you should go to the plugin configurations on the new website and insert the key again.

If you cloned the website, the license key is on the database, and you need to remove it, or else this new domain will not be activated. Remove these records from the wp_options table on the new install:

  • tdwpro_license_key
  • tdwpro_activation_key

Then you should be able to insert the key again and activate it on the new domain.

Developer hooks

Activate the plugin price filters for custom loops

If you have custom product loops on your website, it’s quite possible that the discount from our plugin isn’t reflected in the product price. You need to activate our filters and then deactivate them again.

If you are showing the custom loop with custom code, you need to do as follows:

// Activate filter
add_filter( 'tdw_custom_product_loop', '__return_true' );
// Your custom loop code
// (...)
// Deactivate filter
add_filter( 'tdw_custom_product_loop', '__return_false' );Code language: PHP (php)

If you are showing the custom loop with page builders like Elementor, WPBakery, or others, you can use our shortcodes (that will not output anything – they’ll just run the same PHP code mentioned above):

// Activate filter
[tdw_activate_price_filters]
// Your custom loop shortcode on the page builder
// (...)
// Deactivate filter
[tdw_deactivate_price_filters]Code language: JSON / JSON with Comments (json)