Good plugin. Needs enabling on all products.
-
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)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Good plugin. Needs enabling on all products.’ is closed to new replies.