Jump to content
  • 0

Zakładki na karcie produktu Description / Product detalis prestashop 1.7


Ryba_DK

Question

1 answer to this question

Recommended Posts

  • 0

Piszę dla potomnych

Rozwiązałem mój problem inaczej ( nawet bardziej mi to pasuje )

Przeniosłem wyświetlane z zakładki Product Detalis  ( dodatkowe informacje ) tz kod produktu i stan magazynowy nad przycisk dodaj do koszyka  przez dodanie w product.tpl  ( w katalogu /themes/classic/templates/catalog )

 

zaraz pod:

 {block name='product_discounts'}
                    {include file='catalog/_partials/product-discounts.tpl'}
                  {/block}

dodałem poniższe  wiersze :

                 
                  {block name='product_quantities'}
                    {*{if $product.show_quantities}*}
                    <div class="product-quantities">
                    <label class="label">{l s='In stock' d='Shop.Theme.Catalog'}</label>
                    <span>{$product.quantity} {$product.quantity_label}</span>
                    </div>
                    {*{/if}*}
                    {/block}
                    
                    {block name='product-reference'}
                    {if isset($product.reference_to_display)}
                    <div class="product-reference">
                    <label class="label">{l s='Reference' d='Shop.Theme.Catalog'} </label>
                    <span itemprop="sku">{$product.reference_to_display}</span>
                    </div>
                    {/if}
                    {/block}

 

a w product-detalis.tpl ( w katalogu /themes/classic/templates/catalog/_partials )

usunołem blok odpowiadający za wyświetlanie zakładki product-detalis

oczywiście wyczyszczenie cashe wprowadza zmiany .

Edited by Ryba_DK (see edit history)
Link to comment
Share on other sites

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...