Results 1 to 8 of 8

All Groups goes to Groups Home

This is a discussion on All Groups goes to Groups Home within the Troubleshooting forums, part of the vBSEO SEO Plugin category; If you use the All Groups link, it rewrites back to groups home. Any way around this? Gold with 3.8 ...

  1. #1
    Senior Member glorify's Avatar
    Real Name
    Scott
    Join Date
    Oct 2005
    Location
    Indiana, USA
    Posts
    100
    Liked
    0 times

    Question All Groups goes to Groups Home

    If you use the All Groups link, it rewrites back to groups home. Any way around this?

    Gold with 3.8 beta 1

  2. #2
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Hello,

    Please try to modify functions_vbseo.php file:
    FIND:
    PHP Code:
                        if(count($apars)==|| ($apars['do'] == 'grouplist' && count($apars)==1))
                        {
                             
    $newurl vbseo_group_url(VBSEO_URL_GROUPS_HOME$apars);
                        }else
                        if(
    $apars['do'] == 'grouplist' && $apars['page'])
                        {
                             
    $newurl vbseo_group_url(VBSEO_URL_GROUPS_HOME_PAGE$apars);
                        }else 
    REPLACE WITH:
    PHP Code:
                        if($apars['do'] == 'grouplist' && $apars['page'])
                        {
                             
    $newurl vbseo_group_url(VBSEO_URL_GROUPS_HOME_PAGE$apars);
                             unset(
    $apars['page']);
                             unset(
    $apars['do']);
                            
    $noclear true;
                        }else
                        if(
    $apars['do'] == 'grouplist')
                        {
                             
    $newurl vbseo_group_url(VBSEO_URL_GROUPS_HOME$apars);

                             unset(
    $apars['do']);
                            
    $noclear true;
                        }else 
    and in functions_vbseo_url.php file:
    find:
    PHP Code:
    $selfurl_more .= ($vbseo_arr['group_id'] ? '&groupid=' $vbseo_arr['group_id'] : '') ; 
    replace with:
    PHP Code:
    $selfurl_more .= ($vbseo_arr['group_id'] ? '&groupid=' $vbseo_arr['group_id'] : '&do=grouplist') ; 
    we are going to implement a new URL format to support that.

  3. #3
    Senior Member glorify's Avatar
    Real Name
    Scott
    Join Date
    Oct 2005
    Location
    Indiana, USA
    Posts
    100
    Liked
    0 times
    Worked

    Thanks.

  4. #4
    Nzo
    Nzo is offline
    Junior Member
    Real Name
    Thomas
    Join Date
    Jan 2008
    Posts
    8
    Liked
    0 times
    When I make this modification :
    *all categories link become http://www.domain.com/groups/
    *Pagination stop working for "all groups list". (page 2 still be Page 1)

    I use the defaut rewrite in vbseocp
    VB 3.8 beta2

    Edit Pagination fixed
    Changed defaut setting to: groups/index[page]/
    Last edited by Nzo; 11-16-2008 at 09:14 AM.

  5. #5
    Senior Member glorify's Avatar
    Real Name
    Scott
    Join Date
    Oct 2005
    Location
    Indiana, USA
    Posts
    100
    Liked
    0 times
    Thanks for the pagination fix. I must be rewriting the groups differently because I have cat ids.

  6. #6
    jdp
    jdp is offline
    Junior Member
    Real Name
    Jon
    Join Date
    Oct 2007
    Posts
    2
    Liked
    0 times
    Hi - where do we apply the pagination fix? Thanks!

  7. #7
    Senior Member
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    7,097
    Liked
    5 times
    Hello, please see the above post:

    Edit Pagination fixed
    Changed defaut setting to: groups/index[page]/
    The Forum Hosting - Forum Hosting from the Forum Experts

  8. #8
    Junior Member
    Real Name
    Stephen
    Join Date
    Dec 2008
    Posts
    3
    Liked
    0 times
    Quote Originally Posted by jdp View Post
    Hi - where do we apply the pagination fix? Thanks!
    Quote Originally Posted by Michael Biddle View Post
    Hello, please see the above post:
    Still don't get how to apply the pagination fix. What do we edit?
    Our category links are all /forums/groups/ and clicking on page 2 when you are in all groups links to forums/groups/index2.html and reloads page 1.

Similar Threads

  1. Socal Groups
    By akia in forum Bug Reporting
    Replies: 3
    Last Post: 09-19-2008, 05:34 PM
  2. Change from ./forums/groups to ./groups
    By Coop1979 in forum Custom Rewrite Rules
    Replies: 12
    Last Post: 08-18-2008, 06:51 PM
  3. Group Images Redirect To Groups Home
    By WiseOne in forum Troubleshooting
    Replies: 5
    Last Post: 07-13-2008, 10:36 AM
  4. Two Groups same page
    By citeman in forum Bug Reporting
    Replies: 2
    Last Post: 07-08-2008, 02:56 PM
  5. Possible htaccess bug with groups
    By mc3000 in forum Bug Reporting
    Replies: 2
    Last Post: 05-13-2008, 12:16 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •