Jump to content

Kategórián belüli egyéb termékek árainak megjelenítése


nagyadi14

Recommended Posts

Sziasztok!

 

Van egy még fejlesztés alatt álló webshop (teszt.besttools.hu címen érhető el jelenleg), ahol a termékek adatlapján megjelenik alul egy modul, ami ugyanazon kategóriából jelenít meg X terméket. Ez idáig működik is rendben, viszont szeretném megjeleníteni a 'Kosárba' gomb mellett az adott termék árát, mint ahogy a főoldalon is van:

 

post-1248431-0-66608500-1470584935_thumb.jpg

 

A nettó és bruttó megjelenésére szolgáló kód átmásolása nem eredményez semmit, amely egyébként ez:

<span class="price product-price">
  {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}
    <span class="price">{if !$priceDisplay}{l s='Nettó:'} {convertPrice price=$product.price_tax_exc}</span>
    <br>
    <span class="price-excl">{l s='Bruttó:'} {convertPrice price=$product.price}{/if}</span>
  {/if}
</span>

Mi lehet a gond?

Link to comment
Share on other sites

Ez a productcategory.tpl teljes tartalma

{if count($categoryProducts) > 0 && $categoryProducts !== false}
<section class="page-product-box blockproductscategory">
	<div class="product_title_main">
		<h3 class="productscategory_h3 page-product-heading">{$categoryProducts|@count} {l s='other products in the same category:' mod='productscategory'}</h3>
	</div>
	<div id="productscategory_list" class="clearfix">
		<!-- Megnor start -->
					{assign var='sliderFor' value=4} <!-- Define Number of product for SLIDER -->
					{assign var='productCount' value=count($categoryProducts)}
					{if $productCount >= $sliderFor}
					<div class="customNavigation">
						<a class="btn prev  productcategory_prev"><i class="icon-chevron-sign-left"></i></a>
						<a class="btn next productcategory_next"><i class="icon-chevron-sign-right"></i></a>
					</div>
					{/if}
		<!-- Megnor End -->
		<ul id="{if $productCount >= $sliderFor}productscategory-carousel{else}productcategory-grid{/if}" class="{if $productCount >= $sliderFor}tm-carousel{else}product_list grid row{/if} clearfix">

		{foreach from=$categoryProducts item='categoryProduct' name=categoryProduct}
			<li class="{if $productCount >= $sliderFor}item{else}col-xs-12 col-sm-4 col-md-4{/if} product-box">
				<div class="product-container">
					<div class="left-block">
						<div class="product_desc product-image-container">
							<a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" class="lnk_img product-image" title="{$categoryProduct.name|htmlspecialchars}">
								<img src="{$link->getImageLink($categoryProduct.link_rewrite, $categoryProduct.id_image, 'home_default')|escape:'html':'UTF-8'}" alt="{$categoryProduct.name|htmlspecialchars}" />
							</a>
						</div>
					</div>

					<div class="right-block">
						<div class="s_title_block">
								<h5 itemprop="name" class="product-name">
										<a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)|escape:'html':'UTF-8'}" title="{$categoryProduct.name|htmlspecialchars}">{$categoryProduct.name|truncate:14:'...'|escape:'html':'UTF-8'}</a>
								</h5>
						</div>
						<div class="bottom_info">
							<div class="clearfix button-container" style="margin-top:5px">
								{if !$PS_CATALOG_MODE && ($categoryProduct.allow_oosp || $categoryProduct.quantity > 0)}
									<div class="no-print">
										<a class="exclusive button ajax_add_to_cart_button" href="{$link->getPageLink('cart', true, NULL, "qty=1&id_product={$categoryProduct.id_product|intval}&token={$static_token}&add")|escape:'html':'UTF-8'}" data-id-product="{$categoryProduct.id_product|intval}" title="{l s='Add to cart' mod='productscategory'}">
											<span>{l s='Kosárba'}</span>
										</a>
									</div>
								{/if}
							</div>
						</div>
					</div>
				</div>
			</li>
		{/foreach}
		</ul>
	</div>
</section>
{/if}
Link to comment
Share on other sites

A "productcategory.tpl" fájl pontosabb elérési útvonala kellene, FTP-n látni fogod.

Arra vagyok kíváncsi, hogy ez a tpl most a témád /modules/ könyvtárán belül van, vagy a gyökérben.

 

Ezen felül: a productscategory modulban van egy erre vonatkozó beállítás:

 

productscategorymodul.png

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