PsyberMind Posted August 30, 2010 Share Posted August 30, 2010 (edited) 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 August 30, 2010 by PsyberMind 0 Quote Link to comment Share on other sites More sharing options...
Buzzhost Posted August 31, 2010 Share Posted August 31, 2010 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? 0 Quote Link to comment Share on other sites More sharing options...
aclark Posted September 3, 2010 Share Posted September 3, 2010 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> 0 Quote Link to comment Share on other sites More sharing options...
aclark Posted September 3, 2010 Share Posted September 3, 2010 (edited) 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 September 3, 2010 by aclark 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.