HUSKY - Product Filter for WooCommerce

woof_qs_get_template_structure

Pour l'extension : Quick Search

Modifie l'en-tête d'une colonne du tableau des résultats.

Exemple :

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