在结账过程中,结算信息不会显示在magento one page checkout中

I have a magento website,

While checkout (when we click on checkout button) the billing information is not displaying and i am getting blank page with no fields and form except the header and footer,

But when i analyze the same thing in firebug, i can see that part is there, but not displaying on actual page.

Can anyone help me?

Thanks in advance.

You are adding jQuery BEFORE prototype... which is not the best idea. Remember that magento uses prototype. Change the order of JS files and make sure that jQuery.noConflict(); is added right after you add jQuery.

You are also adding jQuery 2 times:

<script type="text/javascript" src="http://www.citydamsel.com/js/lightboxes/jquery-1.7.2.min.js"></script>

and

<script type="text/javascript" src="http://www.citydamsel.com/skin/frontend/default/helloresponsive/js/jquery.min.js"></script>

also use only:

jQuery.noConflict();

assigning it to variable... I've never seen that working

var $j = jQuery.noConflict();

just leave jQuery.noConflict(); right after you add only 1 instance of jQUERY.

You need to make changes in your local.xml OR page.xml and include your jquery in that layout file.

Still if you want change the load order you can try the below code

<default>
<update handle=”add_jquery_first” />
</default>

<add_jquery_first>
<action method="addJs" block="head">
<file>jquery/jquery-1.8.1.min.js</file>
</action>
</add_jquery_first>