Jump to content
thirty bees forum

Recommended Posts

Posted

Hola a todos, tengo un problema. Cuando intento validar el carrito, nada mas darle al botón salir aparece el pantallazo que adjunto. Necesito ayuda para arreglarlo. Sabéis a que se debe?

Gracias de antemano.

Captura de pantalla 2020-03-29 00.25.40.png

Posted

Have you updaded your theme together with the core or just the core?

If not, I suggest you do that, or at least you update order-carrier.tpl to the latest one from github.

Otherwise you can edit your order-carrier.tpl:

On 9/10/2019 at 10:04 AM, wakabayashi said:

@cprats Please search for:


{if $option.unique_carrier}
  {foreach $option.carrier_list as $carrier}
  <strong>{$carrier.instance->name|escape:'htmlall':'UTF-8'}</strong>
  {/foreach}
  {if isset($carrier.instance->delay[$cookie->id_lang])}
  <br>{l s='Delivery time:'}&nbsp;{$carrier.instance->delay[$cookie->id_lang]|escape:'htmlall':'UTF-8'}
  {/if}
{/if}

And replace it with:


{if $option.unique_carrier}
  {foreach $option.carrier_list as $carrier}
  <strong>{$carrier.instance->name|escape:'htmlall':'UTF-8'}</strong>
  {if isset($carrier.instance->delay[$cookie->id_lang])}
  <br>{l s='Delivery time:'}&nbsp;{$carrier.instance->delay[$cookie->id_lang]|escape:'htmlall':'UTF-8'}
  {/if}
  {/foreach}
{/if}

Please confirm, if this works.

 

Posted

Hola Toplakd, he actualizado todo lo que sugería Core Updater. De todas maneras doy el tema por solucionado con tu indicación. Ya me funciona sin error.

Muchas gracias!

  • Like 1
  • Oncle changed the title to SOLUCIONADO Error al validar carrito

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...