WOOT - WooCommerce Active Products Tables

woot_quantity_individually

For column ‘Quantity‘, if content of the product sells individually.

For example you can set there link where user can read your shop conditions to explain customer why you selling this product individually.

Code example:

add_filter('woot_quantity_individually', function() {
    return WOOT_HELPER::draw_html_item('a', [
                'href' => '__PAGE_LINK_HERE__',
                'target' => '_blank'
                    ], WOOT_Vocabulary::get(esc_html__('individually 1', 'woot-products-tables')));
});