Announcement

Collapse
No announcement yet.

contact us page

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

    contact us page

    Hi

    If a user landing on our contact us page (we link to it for some adwords), completes the page and submits, they are redirected to the \actinic\shop.html page. Is there anyway I can change that?

    Many Thanks

    #2
    No - this cannot be changes I'm afraid. As the customer has come in from outside your store, it has no value within the store for the 'Referring URL' - which is the last *.html page that the customer was on within the 'acatalog' folder before clicking the 'Contact Us' button.

    So without any other 'Referring URL' it just returns the customer to the front page of the store.

    Comment


      #3
      For anyone else looking the bounce destination can be changed.

      Open the file MailForm.pl. and search for 'GetLastShopPage', you will see the line:
      Code:
      $::g_sContentUrl, $::g_pSetupBlob, $::Session->GetLastShopPage(),\%::g_InputHash,
      replace '$::Session->GetLastShopPage()' with your destination URL.
      ie
      Code:
      $::g_sContentUrl, $::g_pSetupBlob, "http://myserver.com/acatalog/page.html", \%::g_InputHash,
      For anyone trying this I would always recomend making a backup copy of the file first.

      Pete

      Comment

      Working...
      X