HUSKY - Products Filter Professional for WooCommerce

woof_qs_get_template_structure

Per estensioneRicerca rapida

Permette di cambiare l'intestazione di una colonna di una tabella.

Esempio:

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;
}