Quote:
Originally Posted by dpatel304
My groups mod works great. The only problem is, my url is not http://www.myurl.com/groups, it is http://www.myurl.com/forums/groups. I managed to manually change the URLs everywhere, so it works just fine, the only problem I have is when users invite each other to groups. The invite shows a link to join and view the groups, but I need to adjust it so that it reflects the correct url for my site. I don't know where I would go about editing this, but anyhelp would be appreciated.
|
in invitation.php find
PHP Code:
$message = construct_phrase($vbphrase['grps_x_feels_you_may_be_interested_in_joining_a_group'], $vbulletin->userinfo['username'], $vbulletin->options['hometitle']) . " [url=" . $vbulletin->options['homeurl'] . "/groups/groups.php?" . $vbulletin->session->vars['sessionurl'] . "g=" . $groupid . "]" . $grps_showgroup['title'] . "[/url]: " . $grps_showgroup['description'];
and replace with
PHP Code:
$message = construct_phrase($vbphrase['grps_x_feels_you_may_be_interested_in_joining_a_group'], $vbulletin->userinfo['username'], $vbulletin->options['hometitle']) . " [url=" . $vbulletin->options['bburl'] . "/groups/groups.php?" . $vbulletin->session->vars['sessionurl'] . "g=" . $groupid . "]" . $grps_showgroup['title'] . "[/url]: " . $grps_showgroup['description'];