Mostrar texto Preorder en carrito

  1. Creamos caraterística Preorder.
  2. Modificamos fichero /themes/particulares/templates/checkout/_partials/cart-detailed-product-line.tpl
  <!--Custom code natural - Añadir característica preorder - /themes/particulares/templates/checkout/_partials/cart-detailed-product-line.tpl - Víctor -->
    {​​assign var=features value=Product::getFrontFeaturesStatic($language.id,$product.id)}​​​​​​​​​
    {​​​​​​​​​foreach from=$features item=feat}​​​​​​​​​
      {​​​​​​​​​if $feat.name == 'Preorder'}​​​​​​​​​
        {​​​​​​​​​assign var="preorder" value=$feat.value}​​​​​​​​​
      {​​​​​​​​​/if}​​​​​​​​​
    {​​​​​​​​​/foreach}​​​​​​​​​
    {​​​​​​​​​if $preorder != ''}​​​​​​​​​
      <p class="preorder_texto">{​​​​​​​​​$preorder}​​​​​​​​​</p>
    {​​​​​​​​​/if}​​​​​​​​​
    <!--Fin custom code natural-->