• Resolved herrlarsen

    (@herrlarsen)


    I use a custom product type, which basically works like a simple product. can I get the plugin to work with it?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WP Developer

    (@bycrik)

    Hello @herrlarsen,

    You can add your product type to the list of supported using the following hook:

    add_filter('tiered_pricing_table/supported_simple_product_types', function ($productTypes) {
    $productTypes[] = 'your-type';

    return $productTypes;
    });
    Plugin Author WP Developer

    (@bycrik)

    Hello @herrlarsen,

    Does the hook solve the issue with your custom product type?

    Plugin Author WP Developer

    (@bycrik)

    Hello,

    We haven’t heard from you in a while, so I’m going to mark this as resolved.
    Feel free to start a new thread if you have any other questions.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.