Announcement

Collapse
No announcement yet.

I want my customers to land on the Brochure Home Page after logging in

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    I want my customers to land on the Brochure Home Page after logging in

    By default, when a customer logs in they are taken to the store home page. This solution will take your customers to the brochure home page instead.

    You need to go to your site folder (usually 'Site1') and edit 'AccountsScript.pl' in Notepad.

    Search in the file for ACTINIC::CAccLogin();

    Immediately above this, add the following lines:

    if( $::g_InputHash{USER} and $::g_InputHash{HASH} )
    {
    $::g_InputHash{PRODUCTPAGE} = $$::g_pSetupBlob{'BROCHURE_MAIN_PAGE'}; $sProdRef = "";
    }

    Save and close the file and then upload to see the results.

    SellerDeck is not able to provide any detailed support for script changes made. If you find that there is a problem, an original copy of the script can be found within the 'Original' folder in your installation. Copy this into your site folder.
Working...
X