Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Remove Peepso Label From user Name in Search Suggestions/Results › Reply To: Remove Peepso Label From user Name in Search Suggestions/Results
September 25, 2019 at 8:18 am
#24114
Keymaster
Hi,
Can you please try this variation then:
add_filter('asp_results', 'asp_remove_peepso_mentions', 10, 1);
function asp_remove_peepso_mentions($results) {
foreach ( $results as $k => &$r ) {
$r->title = preg_replace('/@peepso_user_[0-9]{1,5}\((.*?)\).*?/i', '$1', $r->title);
$r->content = preg_replace('/@peepso_user_[0-9]{1,5}\((.*?)\).*?/i', '$1', $r->content);
}
return $results;
}
If it does not work, then can you please add temporary FTP access, and I will try to debug the code directly within the given file. Thank you!