I am setting up customer accounts and would like customers to go straight to their section when logged in. Each customer has their own product section as well as being able to see the general product sections.
When I set up the first account I amended the AccountScript.pl file to log them in to their section (which I want them to see first).
I found CAccPrintPage and scrolled down to:
and inserted the code below above the code above
However, whichever customer logs in they now automatically go the B&Q page.
Is there any way I can tell Actinic which page to go to using the price schedule number? Or is there another way of doing this?
I have searched the forum but can't find a way of going to different login pages for different accounts. I'm assuming this can be done? I am using V7.
Any help would be much appreciated.
Many thanks
Mel
When I set up the first account I amended the AccountScript.pl file to log them in to their section (which I want them to see first).
I found CAccPrintPage and scrolled down to:
my ($sFirst,$sLast) = split("#",$sProductPage);
if ($sProductPage eq $$::g_pSetupBlob{'CATALOG_PAGE'} )
{
$sProductPage = "B&Q.html";
}
{
$sProductPage = "B&Q.html";
}
Is there any way I can tell Actinic which page to go to using the price schedule number? Or is there another way of doing this?
I have searched the forum but can't find a way of going to different login pages for different accounts. I'm assuming this can be done? I am using V7.
Any help would be much appreciated.
Many thanks
Mel
Comment