Jump to content

CSS On AJAX Order Form


PsyberMind

Recommended Posts

Not sure if this is a bug, but I'm using the stock CSS for now

 

http://portal.psyberhost.net/order/?pid=22&skip=1 (sample - Its a discontinued product that I added a random configuration package to)

 

If you go through the domain process, you see that the Axax Price updater stays on the order form when you have long dropdown fieldsf. Is there a way we can move the position of that box?

Edited by PsyberMind
Link to comment
Share on other sites

Not sure if this is a bug, but I'm using the stock CSS for now

 

http://portal.psyberhost.net/order/?pid=22&skip=1 (sample - Its a discontinued product that I added a random configuration package to)

 

If you go through the domain process, you see that the Axax Price updater stays on the order form when you have long dropdown fieldsf. Is there a way we can move the position of that box?

 

Hey I am using the same methods as you but have a different issue with it.

For some reason my price updater does not update if you change the price plan more than once?

Link to comment
Share on other sites

Not sure if this is a bug, but I'm using the stock CSS for now

 

http://portal.psyberhost.net/order/?pid=22&skip=1 (sample - Its a discontinued product that I added a random configuration package to)

 

If you go through the domain process, you see that the Axax Price updater stays on the order form when you have long dropdown fieldsf. Is there a way we can move the position of that box?

 

Find this code in your master.tpl, you can move that around to suit your needs.

<div id="cartsummary">
<div class="heading"><div class="text">{$LANG.ordersummary}</div><div id="loader"><img src="order/images/summaryloading.gif" border="0" /></div><div style="clear: both;"></div></div>
<br />
<div align="center">{$LANG.ordersummarybegin}</div>
<br /><br />
</div>

Link to comment
Share on other sites

Hey I am using the same methods as you but have a different issue with it.

For some reason my price updater does not update if you change the price plan more than once?

 

Had this problem also, it only shows up when you don't use domain options. Here is my fix:

 

In ordering.js Find:

function cyclechange() {
   $.post("clientarea/order/index.php", 'a=getproduct&'+$("#orderfrm").serialize(),
   function(data){
       $("#productconfig2").html(data);
   });
   recalctotals();
}

 

Change to:

function cyclechange() {
$.post("order/index.php", 'a=getproduct&'+$("#orderfrm").serialize(),
function(data){
	if ($("#domain").val()) $("#productconfig2").html(data); else $("#productconfig1").html(data);
});
recalctotals();
}

Edited by aclark
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated