sanzo Posted March 20, 2018 Share Posted March 20, 2018 Hello. I installed 1.7 prestashop, the theme I chose is a warehouse. On the product page, I would like to see the reference (as in 1.6, where the reference was under the product name). In this way I would also like to insert the ean13 Can anyone help me ? In 1.6 just enter this string: <p id = "product_reference" {if empty ($ product-> reference) || ! $ product-> reference} style = "display: none;" {/ if}> <label> {l s = 'Reference:'} </ label> <span class = "editable" itemprop = "sku" {if! empty ($ product-> reference) && $ product-> reference} content = "{$ product-> reference} {/ if}"> {if! isset ($ groups)} {$ product-> reference | escape: 'html': 'UTF-8'} {/ if} </ span> </ P> In 1.7 instead? I am attaching my product.tpl {block name='head_seo' prepend} <link rel="canonical" href="{$product.canonical_url}"> {/block} {block name='head_og_tags'} <meta property="og:type" content="product"> <meta property="og:url" content="{$urls.current_url}"> <meta property="og:title" content="{$page.meta.title}"> <meta property="og:site_name" content="{$shop.name}"> <meta property="og:description" content="{$page.meta.description}"> <meta property="og:image" content="{$product.cover.large.url}"> {/block} {block name='head' append} <meta property="product:pretax_price:amount" content="{$product.price_tax_exc}"> <meta property="product:pretax_price:currency" content="{$currency.iso_code}"> <meta property="product:price:amount" content="{$product.price_amount}"> <meta property="product:price:currency" content="{$currency.iso_code}"> {if isset($product.weight) && ($product.weight != 0)} <meta property="product:weight:value" content="{$product.weight}"> <meta property="product:weight:units" content="{$product.weight_unit}"> {/if} {if $iqitTheme.bread_bg_category} {assign var="categoryImage" value="img/c/`$product.id_category_default`-category_default.jpg"} {if file_exists($categoryImage)} <style> #wrapper .breadcrumb{ background-image: url('{$link->getCatImageLink($product.category, $product.id_category_default, 'category_default')}'); }</style> {/if} {/if} {/block} {block name='content'} <section id="main" itemscope itemtype="https://schema.org/Product"> <div id="product-preloader"><i class="fa fa-circle-o-notch fa-spin"></i></div> <div id="main-product-wrapper"> <meta itemprop="url" content="{$product.url}"> <div class="row product-info-row"> <div class="col-md-{$iqitTheme.pp_img_width} col-product-image"> {block name='page_content_container'} <section class="page-content" id="content"> {block name='page_content'} {block name='product_cover_thumbnails'} {include file='catalog/_partials/product-cover-thumbnails.tpl'} {/block} {block name='after_cover_thumbnails'} <div class="after-cover-tumbnails text-center">{hook h='displayAfterProductThumbs'}</div> {/block} {/block} </section> {/block} </div> <div class="col-md-{$iqitTheme.pp_content_width} col-product-info"> {block name='page_header_container'} <div class="product_header_container clearfix"> {block name='product_brand_below'} {if $iqitTheme.pp_man_logo == 'next-title'} {if isset($product_manufacturer->id)} {if isset($manufacturer_image_url)} <meta itemprop="brand" content="{$product_manufacturer->name}"> <div class="product-manufacturer product-manufacturer-next float-right"> <a href="{$product_brand_url}"> <img src="{$manufacturer_image_url}" class="img-fluid manufacturer-logo"/> </a> </div> {/if} {/if} {/if} {/block} {block name='page_header'} <h1 class="h1 page-title" itemprop="name"><span>{block name='page_title'}{$product.name}{/block}</span></h1> {/block} {block name='product_brand_below'} {if $iqitTheme.pp_man_logo == 'title'} {if isset($product_manufacturer->id)} <meta itemprop="brand" content="{$product_manufacturer->name}"> {if isset($manufacturer_image_url)} <div class="product-manufacturer mb-3"> <a href="{$product_brand_url}"> <img src="{$manufacturer_image_url}" class="img-fluid manufacturer-logo"/> </a> </div> {else} <label class="label">{l s='Brand' d='Shop.Theme.Catalog'}:</label> <span> <a href="{$product_brand_url}">{$product_manufacturer->name}</a> </span> {/if} {/if} {/if} {if $iqitTheme.pp_man_logo == 'next-title'} {if isset($product_manufacturer->id)} {if !isset($manufacturer_image_url)} <meta itemprop="brand" content="{$product_manufacturer->name}"> <label class="label">{l s='Brand' d='Shop.Theme.Catalog'}:</label> <span> <a href="{$product_brand_url}">{$product_manufacturer->name}</a> </span> {/if} {/if} {/if} {/block} {block name='product_prices'} {include file='catalog/_partials/product-prices.tpl'} {/block} </div> {/block} <div class="product-information"> {block name='product_description_short'} <div id="product-description-short-{$product.id}" itemprop="description" class="rte-content">{$product.description_short nofilter}</div> {/block} {if $product.is_customizable && count($product.customizations.fields)} {block name='product_customization'} {include file="catalog/_partials/product-customization.tpl" customizations=$product.customizations} {/block} {/if} <div class="product-actions"> {block name='product_buy'} <form action="{$urls.pages.cart}" method="post" id="add-to-cart-or-refresh"> <input type="hidden" name="token" value="{$static_token}"> <input type="hidden" name="id_product" value="{$product.id}" id="product_page_product_id"> <input type="hidden" name="id_customization" value="{$product.id_customization}" id="product_customization_id"> {block name='product_variants'} {hook h='displayProductVariants' product=$product} {include file='catalog/_partials/product-variants.tpl'} {/block} {block name='product_pack'} {if $packItems} <section class="product-pack"> <p class="h4">{l s='This pack contains' d='Shop.Theme.Catalog'}</p> {foreach from=$packItems item="product_pack"} {block name='product_miniature'} {include file='catalog/_partials/miniatures/pack-product.tpl' product=$product_pack} {/block} {/foreach} </section> {/if} {/block} {block name='product_add_to_cart'} {include file='catalog/_partials/product-add-to-cart.tpl'} {/block} {block name='product_discounts'} {include file='catalog/_partials/product-discounts.tpl'} {/block} {block name='product_additional_info'} {include file='catalog/_partials/product-additional-info.tpl'} {/block} {block name='product_refresh'} <input class="product-refresh ps-hidden-by-js" name="refresh" type="submit" data-url-update="false" value="{l s='Refresh' d='Shop.Theme.Actions'}"> {/block} </form> {/block} {block name='hook_display_reassurance'} {hook h='displayReassurance'} {/block} </div> </div> </div> {if $iqitTheme.pp_sidebar} <div class="col-md-{$iqitTheme.pp_sidebar} sidebar product-sidebar"> {if $iqitTheme.pp_accesories == 'sidebar'} {block name='product_accessories_sidebar'} {if $accessories} <section class="product-accessories product-accessories-sidebar block"> <p class="block-title"><span>{l s='You might also like' d='Shop.Theme.Catalog'}</span></p> <div id="product-accessories-sidebar" class="block-content products products-grid"> {foreach from=$accessories item="product_accessory"} {block name='product_miniature'} {include file='catalog/_partials/miniatures/product-small.tpl' product=$product_accessory carousel=true elementor=true} {/block} {/foreach} </div> </section> {/if} {/block} {/if} {hook h='displayRightColumnProduct'} </div> {/if} </div> {if $iqitTheme.pp_tabs== 'tabh' || $iqitTheme.pp_tabs== 'tabha'} {include file='catalog/_partials/_product_partials/product-tabs-h.tpl'} {elseif $iqitTheme.pp_tabs== 'section'} {include file='catalog/_partials/_product_partials/product-tabs-sections.tpl'} {/if} {if $iqitTheme.pp_accesories == 'footer'} {block name='product_accessories_footer'} {if $accessories} <section class="product-accessories block block-section"> <p class="section-title">{l s='You might also like' d='Shop.Theme.Catalog'}</p> <div class="block-content"> <div class="products slick-products-carousel products-grid slick-default-carousel"> {foreach from=$accessories item="product_accessory"} {block name='product_miniature'} {include file='catalog/_partials/miniatures/product.tpl' product=$product_accessory carousel=true} {/block} {/foreach} </div> </div> </section> {/if} {/block} {/if} {block name='product_footer'} {hook h='displayFooterProduct' product=$product category=$category} {/block} {block name='product_images_modal'} {include file='catalog/_partials/product-images-modal.tpl'} {/block} {block name='page_footer_container'} <footer class="page-footer"> {block name='page_footer'} <!-- Footer content --> {/block} </footer> {/block} </div> </section> {/block} product.tpl Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now