PErmalink Error Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › PErmalink Error This topic has 2 replies, 2 voices, and was last updated 9 years, 9 months ago by Ernest Marcinko. Viewing 3 posts - 1 through 3 (of 3 total) Author Posts September 3, 2016 at 8:18 am #9956 praticamenteParticipant in the results there is a permalink error, every permalink have a ”/0/” should be http://sitename.com/post now i have http://sitename.com/0/post so when i click on the result i have a 404… this appened only in frontend, in the search template preview everityng is ok September 3, 2016 at 8:23 am #9958 praticamenteParticipant soved adding add_filter( ‘asp_results’, ‘asp_try_fixing_url’, 10, 1 ); function asp_try_fixing_url( $results ) { foreach ($results as $k => &$v) { $v->link = str_replace(‘/0/’, ‘/’, $v->link); } return $results; } in function.php thanks September 3, 2016 at 8:35 am #9959 Ernest MarcinkoKeymaster You cannot access this content. Author Posts Viewing 3 posts - 1 through 3 (of 3 total) The topic ‘PErmalink Error’ is closed to new replies.