This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Remove Peepso Label From user Name in Search Suggestions/Results

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

#24114
Ernest MarcinkoErnest Marcinko
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!