Viewing 2 replies - 1 through 2 (of 2 total)
  • Sumit Jain

    (@jainsumit12)

    Hi,

    Yea, You can change the Name of All Button.

    Here is File You need to change the Text.

    includes/class.NimblePortfolio.php

    Line Number : 91

    <?php echo apply_filters(‘nimble_portfolio_filter_all’, sprintf(‘%s‘, __(“All”, “nimble_portfolio”))); ?>

    You can Replace the Text All to any you Want.

    Plugin Author Nimble3

    (@nimble3)

    A better way is to add below code in the functions.php of your theme.

    add_filter('nimble_portfolio_filter_all', 'remove_nimble_portfolio_all_filter');
    
    function remove_nimble_portfolio_all_filter($filter_tag) {
        return "TRANSLATED_ALL";
    }

    replace TRANSLATED_ALL with your text.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Translate sorting button All’ is closed to new replies.