• Resolved jinsley8

    (@jinsley8)


    Hi,

    Are there any filters built in to remove the color (red, green, yellow) of the quantity shipped and remove the labels (Partially Shipped, Shipped, Not Shipped)?

    I’m trying to only show the quantity shipped as a number.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Vikram S.

    (@jodhavishalsingh)

    Hi, Filter is added to modify the default labels, but you can hide or overwrite the color using CSS code.

    Filter Example:

    add_filter('wc_partial_labels','modify_labels',10,1);
    function modify_labels($labels){
        $labels['shipped'] = 'Custom Label Text';
        return $labels;
    }

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Filters to change the shipped label’ is closed to new replies.