I am developing a client site. It is v12 because their office Access database is in a close relationship with the Actinic database in a way that no one understands! The chap you devised it is no longer available.
I have therefore created a bootstrap outer page layout and bussed in the v14 responsive plumbing as it were. It is working quite well.
Brochure home page is index.html and the Catalog Home Page is acatalog/index.html
https://www.graphiczdev.uk/v4csmart/
Login is under 'Account' at the top when on a section page. Log in with
Guest Guest
testtest
and you go to the brochure home page. Move to 'Buy Gift Cards' (Section page) and you are logged out.
The problem is that on logging in when on a section page the customer is taken to the brochure home page. He is then logged out when he moves to the catalog.
Why would the customer be logged out moving from brochure to catalog?
The defaut behaviour is that the ciustomer is returned to the page they logged in from but this is not happening.
I have used this AccountsScript.pl edit on another instance of the site: (https://community.sellerdeck.com/for...en-they-log-in) and added the following to AccountsScript.pl which was otherwise a default file
and it seems to do the trick, but I would rather fix it so that when you login from a section page you stay on the section page.
Thank you!
I have therefore created a bootstrap outer page layout and bussed in the v14 responsive plumbing as it were. It is working quite well.
Brochure home page is index.html and the Catalog Home Page is acatalog/index.html
https://www.graphiczdev.uk/v4csmart/
Login is under 'Account' at the top when on a section page. Log in with
Guest Guest
testtest
and you go to the brochure home page. Move to 'Buy Gift Cards' (Section page) and you are logged out.
The problem is that on logging in when on a section page the customer is taken to the brochure home page. He is then logged out when he moves to the catalog.
Why would the customer be logged out moving from brochure to catalog?
The defaut behaviour is that the ciustomer is returned to the page they logged in from but this is not happening.
I have used this AccountsScript.pl edit on another instance of the site: (https://community.sellerdeck.com/for...en-they-log-in) and added the following to AccountsScript.pl which was otherwise a default file
Code:
if ($::g_bJustAfterLogin) { $::g_InputHash{PRODUCTPAGE} = 'acatalog/index.html'; $ACTINIC::B2B->Set('ProductPage', $::g_InputHash{PRODUCTPAGE}); }
Thank you!
Comment