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

PErmalink Error

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #9956
    praticamentepraticamente
    Participant

    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

    #9958
    praticamentepraticamente
    Participant

    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

    #9959
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘PErmalink Error’ is closed to new replies.