If you want to make your changes in accordance with the future update
includes/brozzme_navigation_class.php on line 86 and line 87
to replace with
$previous_text = apply_filters(‘wc_bpnav_previous_text’, __(‘Previous’,’brozzme-product-navigation’));
$next_text = apply_filters(‘wc_bpnav_next_text’,__(‘Next’,’brozzme-product-navigation’));
in your functions.php child-theme file
add_filter(‘wc_bpnav_previous_text’, ‘my_custom_previous_text’);
function my_custom_previous_text(){
return __(‘Previous’,’brozzme-product-navigation’);
}
add_filter(‘wc_bpnav_next_text’, ‘my_custom_next_text’);
function my_custom_next_text(){
return __(‘Next’,’brozzme-product-navigation’);
}
You can change the text-domain to another if you better like.
With this, all customization will still remains after update.