Customizing viewBulk Discounts for WooCommerce for WordPress

Elements’ view can be adjusted by setting CSS styles in the theme. In any theme, these settings are usually can be found in ‘Appearance’ -> ‘Customize’ -> ‘Additional CSS’.

To hide discount table header, type the following:

.seraph-wd.discount-table thead
{
    display: none;
}

To hide discount table value column, just add the following:

.seraph-wd.discount-table td.discount
{
    display: none;
}

To hide discount table range original price, just add the following:

.seraph-wd.discount-table td.range del
{
    display: none;
}

Leave a Reply