Jump to content

new ajax order form?


VicToMeyeZR

Recommended Posts

Figured out the glitch was stupidity on my part

 

Ok one thing I see with the ajax form,

 

If I try to order a hosting package get the form filled in

 

then I try to hit the link to add a dedicated ssl and it wipes the order

 

How can we have it so that you can order multiple product types on the same invoice

Link to comment
Share on other sites

I think it is missing the link / files in order and homepage.tpl footer.tpl. Although it is still possible for the admin which type of order is used.

There must be something missing, I made the connection manually / order and ran normal.

Link to comment
Share on other sites

+1 We meet some issues with the float box too.

 

We have been able to resolve the floatbox issue. Since we use a joomla template for our Client Portal the floatbox was out of align. After playing with the /order/templates/jqueryfloat.js we were able to align it correctly; however, we could not get it to float as default but as the user scrolls down the page the floatbox remains fixed and the visitor is able to see the entire floatbox.

 

These are the settings that we adjusted:

 

ORGINAL:

 

		var offset = this.jqObj.offset();
	this.currentX = offset.left;
	this.currentY = offset.top;
	this.width = this.jqObj.width();
	this.height = this.jqObj.height();
	this.alwaysVisible = params.alwaysVisible;
	this.alwaysTop = params.alwaysTop;

 

MODIFIED:

 

		var offset = this.jqObj.offset(5);
	this.currentX = offset.right;
	this.currentY = 150;
	this.width = this.jqObj.width();
	this.height = this.jqObj.height();
	this.alwaysVisible = false;
	this.alwaysTop = true;

 

We changed the currentX to right instead of left, set the top location to 150px and made the offset variable to 5. We have tested this in IE, Chrome and Firefox. Works good for our site.

 

Hope that this helps for those who require customization for the Portal.

 

Regards,

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