Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • thanks Gary.
    that worked perfectly – removing that line.
    such a funny thing to happen on only one installation suddenly. cheers bro.

    just to add to the rewrite.php edit:
    if you want to completely remove any base ie: blog.com/name instead of blog.com/author/name
    then only one extra change needs to be made:
    leave the author_base blank
    and then find this code below:

    function get_author_permastruct() {
    if (isset($this->author_structure)) {
    return $this->author_structure;
    }

    if (empty($this->permalink_structure)) {
    $this->author_structure = ”;
    return false;
    }

    $this->author_structure = $this->front . $this->author_base . ‘/%author%’;

    return $this->author_structure;
    }

    and remove the forward slash from here:
    $this->author_base . ‘/%author%’;

    so

    $this->author_base . ‘%author%’;

    and you’re sweet. no author base, no double foward slash.

    i had fun reading this one. i find forums have trouble staying on point.

    Yak is looking very promising. I like the fact I can use posts as products. This is going to become very versatile. One thing I’m going to need to iron out is altering contact information of buyers ; adding email and an extra text field.

    Otherwise a breeze to integrate.

    A thanks to those who contributed constructively.

Viewing 3 replies - 1 through 3 (of 3 total)