I’m change meta title publish page and search page use this code
<?php
function wm_custom_meta_title($title) {
if(Params::getParam('page') == 'search') {
return __('All listings');
} else if(Params::getParam('action') == 'item_add') {
return __('Publish a listing');
}
return $title;
}
osc_add_filter('meta_title_filter', 'wm_custom_meta_title');
After install this plugin change title not showing