PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]
Botoscope is currently in early access

Support Forum

You need to log-in to create request (topic) to the support

Front Builder - Title and Taxonomy labels are the same

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

In the front builder I am using a hierarchy dropdown. I would like to have a different title label text and hierarchy menu labels. I am using Brand+Model for the taxonomy labels, but that also becomes the title label as there is no separate text option for the title.

Hello Laurent

There are two ways to achieve this.

The first option is through the HUSKY settings directly. Go to the filter settings for your hierarchy taxonomy and find the Custom Label field. You can use the caret character as a separator between the dropdown level labels and the block title. For example:

Brand+Model^Select Vehicle

The part before the caret defines the hierarchy dropdown labels as usual. The part after the caret becomes the independent title label shown in the Front Builder block, separate from the dropdown labels. So in the example above the dropdowns will show Brand and Model while the block title will show Select Vehicle.

If that does not work for your setup, the second option is to add this code to your theme's functions.php file:

add_filter('woof_get_all_filter_titles', function($titles) {
    // Replace 'pa_brand' with your actual taxonomy slug
    if (isset($titles['pa_brand'])) {
        $titles['pa_brand'] = 'Your Custom Title Here';
    }
    return $titles;
});

Replace pa_brand with the actual slug of your taxonomy and set whatever title text you need. This filter runs every time HUSKY builds its title list so it will apply consistently across the Front Builder.

Please try the first option first and let us know how it goes.

Sorry for my late reply. That worked, thank you.

You are Welcome!