No error message in Get Quotes

ThemeBurn SupportForumsOpenCart ThemesShoppica 2 OpenCart ThemeNo error message in Get Quotes

This topic has been marked as resolved.

Hi TB;

I think is bug in all version of Shoppica2 (I don’t test Shooppica1), because the problem is only with Shoppica not with default theme :

The problem is when I have made a shipping method for select region then go to shopping cart page and choose ENTER YOUR DESTINATION TO GET A SHIPPING ESTIMATE, if I choose a country in the zone that I configure with the shipping method all works fine, but if I choose a zone not in any shipping method I can’t see any error message and nothing happen, but in default theme I get this message : "Warning: No Shipping options are available. Please contact us for assistance!"

So, I have try to fixe by add and change the code in cart.tpl

I have change this code :

if (json['error']) {
  if (json['error']['warning']) {
     $('#basket').before('<div class="warning">' + json['error']['warning'] + '</div>');
}

by this :
if (json['error']) {
   if (json['error']['warning']) {
      $('#cart_form').before('<div class="s_server_msg s_msg_red"><p>' + json['error']['warning'] + '</p></div>');

  $('.warning').fadeIn('slow');

  $('html, body').animate({ scrollTop: 0 }, 'slow');
                   
        $('#quote').html(html);
        $('#quote').slideUp('slow');
}

Hope that TB team fixe this in the next update.

Best regards.
Sam

 samdz
April 22, 2013 at 4:44 pm #22391

Thanks for the report Sam!
We will definitely add this fix to the next update.

Good catch!!

Regards,
ThemeBurn team

April 29, 2013 at 8:46 am #22645

Hi;

Thank you for your intersting.

Best regards.
Sam

 samdz
May 2, 2013 at 11:38 pm #22773
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.