Compatible Extensions Ajax quick checkout in mobile view

ThemeBurn SupportForumsOpenCart ThemesPavilion OpenCart ThemeCompatible Extensions Ajax quick checkout in mobile view

This topic has been marked as not resolved.

Hi, it is a problem about Compatible Extensions Ajax quick checkout in mobile view

OC2.3.0.2
Pavilion Stylish v2.1.4
Ajax Quick Checkout 6.4
ajax_quickcheckout_pavilion_OC2.zip installed
(I don’t know it is Compatible to the OC & Pavilion version above or not)
——————-
Force bootstrap On
Please have a look on the attachment
Compare 12345
The left one is the original opencart theme
The right one is Pavilion.

You can see that compare with the original opencart theme, Ajax Quick Checkout cant display well in Pavilion mobile view, the layout become very strange
——————————————–
After I add the code in CP from
http://support.themeburn.com/topic/ajax-quick-checkout-and-pavilion-styling
Please have a look on the attachment
pavilionwith code&bootstrap On
123456

The layout become better. But I think it is also a little bit strange. For example, the Input field is too short compare with the original theme ‘s Input field.
And the coupon code Input field is also not so normal…

Force bootstrap Off
With the code in CP from
http://support.themeburn.com/topic/ajax-quick-checkout-and-pavilion-styling

Please have a look on the attachment
pavilionwith code&bootstrap Off
12345

Actually, it become very strange again, all the column move to the left side of the screen, and also the guest/register/login logo‘s word crooked….

In the Desktop View:
——————————————-
Force bootstrap On
add the code

all column move to the left side of the screen.
———————————–
Force bootstrap Off
add the code

the layout become messy.
Force bootstrap Off
no code

Prefect!!!

I have worked for this about a week, when the desktop view is ok, the mobile view suck….
I don’t know how to set them precisely….

Please let me know if there is anything that can be done., Sorry for my poor English!

  • This reply was modified 2668 days ago by  Ken Yeung.
  • This reply was modified 2668 days ago by  Ken Yeung.
December 28, 2016 at 10:05 pm #54776

I aslo send you the latest version of Ajax quick checkout,thanks

  • This reply was modified 2668 days ago by  Ken Yeung.
December 28, 2016 at 10:18 pm #54780

Force bootstrap On
NO CODE in CP
Compare 12345
The left one is the original opencart theme
The right one is Pavilion.

December 29, 2016 at 5:42 am #54816

After I add the code in CP from
http://support.themeburn.com/topic/ajax-quick-checkout-and-pavilion-styling

pavilionwith code&bootstrap On
123456

December 29, 2016 at 5:46 am #54817

Force bootstrap Off
With the code in CP from
http://support.themeburn.com/topic/ajax-quick-checkout-and-pavilion-styling

pavilionwith code&bootstrap Off
12345

December 29, 2016 at 5:48 am #54818

In the Desktop View:
——————————————-
Force bootstrap On
add the code

all column move to the left side of the screen.
———————————–
Force bootstrap Off
add the code

the layout become messy.
—————————
Force bootstrap Off
no code

Prefect!!!

December 29, 2016 at 5:50 am #54819

Hi,

Can you try to disable the “Force Bootstrap” option and add this extra CSS for mobile devices (small screens):

@media (max-width: 768px) {
  .row > div:not([class*="col-xs"]) {
    width: auto;
    max-width: calc(100% - 30px);
  }
  #d_quickcheckout .qc-quantity {
    width: auto !important;
  }
  #d_quickcheckout .qc-quantity input {
    width: 40px !important;
    max-width: 40px !important;
  }
  #d_quickcheckout .qc-quantity .input-group-btn {
    display: none !important;
  }
  #d_quickcheckout .qc-checkout-product table thead td
  {
    padding-left:  10px;
    padding-right: 10px;
    font-size: 12px;
  }
  #d_quickcheckout .qc-checkout-product table tbody td:first-child,
  #d_quickcheckout .qc-checkout-product table tbody td:last-child
  {
    padding-left:  0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  #d_quickcheckout .form-group > [class*="col"] {
    max-width: 100% !important;
    margin-top: 10px;
  }
  #d_quickcheckout .qc-checkout-product table {
    display: block;
    overflow-x: auto;
    border-left: none;
    border-right: none;
  }
}

BR,
ThemeBurn team

January 4, 2017 at 5:32 pm #54975

Don\’t know why suddenly can\’t upload IMG in this post…
After add the CSS,the problem 99% resolved
But still have a small problem in the product table
Can u also have a look?
Thank you very much
U help a lot

January 5, 2017 at 3:39 am #55035

January 5, 2017 at 3:39 am #55036

Hi,

Product table is scrollable. We’ve minimized spacing inside table, but it still cannot fit in small screens, even if you decrease the size of the product thumb.

BR,
ThemeBurn team

January 9, 2017 at 11:29 am #55154

thanks, i will try to ask the designer of the ajax seem can fix the Product table or not

also, i find that the login popup of ajax with pavilion have a small problem too.

the red circle mark a unnecessary “<" next to the password form

how can i remove the "<" in here?

January 18, 2017 at 10:27 am #55573

also in the ajax checkout desktop view, the page with english show well, but in chinese, those small icon next to some text have a wrong position

January 18, 2017 at 6:41 pm #55581

#d_quickcheckout i.fa,#d_quickcheckout i[class*="fa-"] {
vertical-align: top !important;
}
#d_quickcheckout .preloader {
margin: 0px!important;
}

I added the code above to the css in the AQC, the wrong position of the small icon resolved.

but the login popup of ajax with pavilion’s unnecessary “>” next to the password form
still exist.

January 20, 2017 at 9:13 pm #55661

after using the code u provide so as to enlarge the content in mobile view

@media (max-width: 768px) {
#wrapper {
margin: 0 !important;
padding: 30px 20px 20px 20px;
}
}

the form in acq become not fit to the mobile view again

how can the form show in attachment extend to the marked yellow part ?

including the form “POST OFFICE”

thanks you very much

January 23, 2017 at 5:54 am #55719

Hi,

Here is some CSS to fix the “>” problem:

#login_form #remeber_password {
  display: block;
  margin: 10px 0;
}

BR,
ThemeBurn team

January 26, 2017 at 1:46 am #55846
Viewing 15 posts - 1 through 15 (of 20 total)
  • You must be logged in to reply to this topic.