HUSKY - WooCommerce Products Filter Professional


woof_qs_get_template_structure

For extensionQuick Search

Allows to change a column header of a table.

Example:

add_filter('woof_qs_get_template_structure', 'change_title');

function change_title($data) {
    if (isset($data['price'])) {
        $data['price']['title'] = "Price of the products";
    }
    return $data;
}

 


Troubles? Ask for Support!