Change "Filter By Category" to "Filter By City" in Portfolio

Hi again!

We host events in different cities and feature our galleries in the portfolio section of x theme.

We would like to change “Filter By Category” to “Filter By City” in the dropdown box.

Any suggestions would be greatly appreciated! Thank you!

Hello @beta_c10inc

The easiest way to achieve that is by using jQuery, you can add this snippet to (Theme Options > JS):

jQuery( document ).ready(function($) {
    $('.x-portfolio-filter-label').text('Filter By City');
});
`

This should do the trick,
Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.