• Good plugin. Integrates well. Here’s what I do to enable it on all products by default (weirdly also works for the product creation form) :

    add_action('save_post', function (int $post_id, $post_after, $post_before) {
        if ($post_after->post_type === 'product') {
            update_post_meta($post_id, 'qwc_enable_quotes', 'on');
        }
    }, 10, 3);
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author pinal.shah

    (@pinalshah)

    Hi @nxmndr,

    Thanks for the review ??

    You can enable Quotes for all the products at one go by enabling the setting in WP Dashboard > Quotes > Settings.

    Thanks,
    Pinal

    Thread Starter nxmndr

    (@nxmndr)

    But not for future products. Sorry I was unclear.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Good plugin. Needs enabling on all products.’ is closed to new replies.