I posted two weeks ago with a problem where cart page links were being mangled by Actinic
http: //www.domain.com/pagename was being rendered as http: //www.domain.com/acatalog/http ://www.domain.com/pagename [without the spaces].
Actinic support found the cause and the solution.
All the links being mangled were of the javascript:ShowPopUp variety and introducing a space between the ShowPopUp and the bracketed parameters ('<full path to pagefile>', <width>, <height>) solves the problem.
To emphasize:
Don't use javascript:ShowPopUp('<full path to pagefile>', <width>, <height>)
DO use javascript:ShowPopUp ('<full path to pagefile>', <width>, <height>)
http: //www.domain.com/pagename was being rendered as http: //www.domain.com/acatalog/http ://www.domain.com/pagename [without the spaces].
Actinic support found the cause and the solution.
All the links being mangled were of the javascript:ShowPopUp variety and introducing a space between the ShowPopUp and the bracketed parameters ('<full path to pagefile>', <width>, <height>) solves the problem.
To emphasize:
Don't use javascript:ShowPopUp('<full path to pagefile>', <width>, <height>)
DO use javascript:ShowPopUp ('<full path to pagefile>', <width>, <height>)
Comment