Announcement

Collapse
No announcement yet.

MOTO form customisation

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

    MOTO form customisation

    Does anyone know a way to add a shortcut type button to the MOTO form that will show the extended information for the product shown in the product entry. Ideally it would fit in the window already there, but a popup would do.
    This feature would help with dealing with telephone callers - on our current site we have to have the website open and search for the product separately.
    Thanks.

    #2
    I'm afraid you cannot fire off a poup from the MOTO page. However it's easy to display the Extended Info text and image as part of the MOTO product details. Just add
    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInfoImage%22%20%2f%3e%20%21%3d%20%22%22" >
    	<br/><img src="<actinic:variable name="ExtendedInfoImage" />" 
    		<actinic:block if="%3cactinic%3avariable%20name%3d%22ExtendedInfoImageWidth%22%20%2f%3e%20%3e%20200" >
    		width="200"
    		</actinic:block>
    	     />
    	<br/>	
    </actinic:block>
    <actinic:variable name="ExtendedInfoText" />
    to the Standard MOTO Product Layout.

    Note that I've set the Extended Info image width to 200 pixels as larger images would break the form.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thanks very much Norman. It now seems to work fine. Got it wrong to start with but gradually learning my way around.

      Thanks again for your help.

      Comment

      Working...
      X