Announcement

Collapse
No announcement yet.

Failed Search Redirection Issue

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

    Failed Search Redirection Issue

    How do you change the redirection page when a Search returns no products?

    On our site, www.qubeshoes.co.uk, if you search for a product which doesnt exist (e.g. 'ZZ') you are redirected back to the main frameset of the site - Horror of horrors - a frameset within a frameset!!!

    Is there anywhere where i can change the redirected page? Anyone any ideas on how to fix?

    Thx in advance

    #2
    Hi there

    This would require a script change, please try the following:

    Edit Session.pm.
    Search for 'sub InitURLs'
    Scroll down to...

    if ($sReferrer =~
    /$::g_sAccountScriptName.*PRODUCTPAGE\=(?!framenavbar\.html)/i )

    Comment out this line with a '#' and insert a new line after it so that it
    reads...

    # if ($sReferrer =~
    /$::g_sAccountScriptName.*PRODUCTPAGE\=(?!framenavbar\.html)/i )

    if ($sReferrer =~
    /$::g_sAccountScriptName.*PRODUCTPAGE\=(?!(framenavbar|index)\.htm(l?))/i
    )

    If the above does not work, then i would suggest in registering an email ticket with support: http://www.actinic.co.uk/support/wishlist.htm

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment

    Working...
    X