Allexb10 Posted October 30, 2013 Share Posted October 30, 2013 Olá, Estou desenvolvendo um e-commerce para venda no atacado. Tem como mostrar o valor dos produtos somente para quem estiver logado? Ou seja, o cliente consegue ver todos os produtos mas só conseguirá ver os valores depois de se cadastrar e eu aprovar o cadastro. Tem como fazer isto? Link to comment Share on other sites More sharing options...
guest* Posted October 30, 2013 Share Posted October 30, 2013 Pode realizar através de um módulo de compra: http://addons.prestashop.com/en/search?search_query=private Link to comment Share on other sites More sharing options...
Allexb10 Posted October 30, 2013 Author Share Posted October 30, 2013 Mas eu não quero que os clientes precisem logar para ver a loja, e sim, logar para ver o valor dos produtos. Por exemplo: dentro do template productlist.tpl em um código, identificar se existe alguém logado e então exibir o código que mostra o valor dos produtos. Tem como neste template identificar se existe alguém logado e alguns dados como e-mail ou algo para identificar o usuário? Link to comment Share on other sites More sharing options...
guest* Posted October 30, 2013 Share Posted October 30, 2013 Sim lá existem módulos que suprimem somente o preco também. Link to comment Share on other sites More sharing options...
FelipeGallo Posted November 12, 2013 Share Posted November 12, 2013 Crie um grupo de clientes e escolha a opção "Não mostrar preços" para este grupo. Link to comment Share on other sites More sharing options...
Allexb10 Posted November 12, 2013 Author Share Posted November 12, 2013 Obrigado Felipe, mas já resolvi o problema apenas colocando o preço do product-list e product dentro da condição: {if $logged} ... {/if} mas obrigado pela dica... Link to comment Share on other sites More sharing options...
andrespilari Posted April 4, 2014 Share Posted April 4, 2014 (edited) boa tarde Alex aonde eu encontro esse arquivo que vc mudou ? qual o caminho lembrando que eu uso a versao 1.6 obrigado.abraco, ou se tem outra forma tambem/? ou aonde eu mudo e como ficaria estou começando no prestashop ainda nao sei direito? Edited April 4, 2014 by André Spilari (see edit history) Link to comment Share on other sites More sharing options...
Allexb10 Posted April 4, 2014 Author Share Posted April 4, 2014 Boa tarde André, Já faz um tempo que não alterei mais estes arquivos, mas o caminho do arquivo product-list.tpl é: pasta do seu ecommerce/themes/nome do seu tema(no meu caso era default)/product-list.tpl O recomendável é realizar estes procedimentos em um ambiente de testes para não ocorrer imprevistos. No meu caso tive que alterar em mais lugares, pois o cliente em que trabalhava necessitava destas funcionalidades. Caso queira verificar como ficou o tema default que alterei, segue o link: http://www.911tactical.com.br Link to comment Share on other sites More sharing options...
andrespilari Posted April 4, 2014 Share Posted April 4, 2014 Boa tarde Alex, muito obrigado por estar me ajudando vamos la, desculpe minha ignorancia no assunto, eu abri o arquivo que me falou e adicionei no TOP e no FINAL as seguintes coiisas: {* * 2007-2014 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {if $logged} {if isset($products) && $products} {*define numbers of product per line in other page for desktop*} {if $page_name !='index' && $page_name !='product'} {assign var='nbItemsPerLine' value=3} {assign var='nbItemsPerLineTablet' value=2} {assign var='nbItemsPerLineMobile' value=3} {else} {assign var='nbItemsPerLine' value=4} {assign var='nbItemsPerLineTablet' value=3} {assign var='nbItemsPerLineMobile' value=2} {/if} {*define numbers of product per line in other page for tablet*} {assign var='nbLi' value=$products|@count} {math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines} {math equation="nbLi/nbItemsPerLineTablet" nbLi=$nbLi nbItemsPerLineTablet=$nbItemsPerLineTablet assign=nbLinesTablet} <!-- Products list --> <ul{if isset($id) && $id} id="{$id}"{/if} class="product_list grid row{if isset($class) && $class} {$class}{/if}{if isset($active) && $active == 1} active{/if}"> {foreach from=$products item=product name=products} {math equation="(total%perLine)" total=$smarty.foreach.products.total perLine=$nbItemsPerLine assign=totModulo} {math equation="(total%perLineT)" total=$smarty.foreach.products.total perLineT=$nbItemsPerLineTablet assign=totModuloTablet} {math equation="(total%perLineT)" total=$smarty.foreach.products.total perLineT=$nbItemsPerLineMobile assign=totModuloMobile} {if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if} {if $totModuloTablet == 0}{assign var='totModuloTablet' value=$nbItemsPerLineTablet}{/if} {if $totModuloMobile == 0}{assign var='totModuloMobile' value=$nbItemsPerLineMobile}{/if} <li class="ajax_block_product{if $page_name == 'index' || $page_name == 'product'} col-xs-12 col-sm-4 col-md-3{else} col-xs-12 col-sm-6 col-md-4{/if}{if $smarty.foreach.products.iteration%$nbItemsPerLine == 0} last-in-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLine == 1} first-in-line{/if}{if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModulo)} last-line{/if}{if $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 0} last-item-of-tablet-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 1} first-item-of-tablet-line{/if}{if $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 0} last-item-of-mobile-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 1} first-item-of-mobile-line{/if}{if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModuloMobile)} last-mobile-line{/if}"> <div class="product-container" itemscope itemtype="http://schema.org/Product"> <div class="left-block"> <div class="product-image-container"> <a class="product_img_link" href="{$product.link|escape:'html':'UTF-8'}" title="{$product.name|escape:'html':'UTF-8'}" itemprop="url"> <img class="replace-2x img-responsive" src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')|escape:'html':'UTF-8'}" alt="{if !empty($product.legend)}{$product.legend|escape:'html':'UTF-8'}{else}{$product.name|escape:'html':'UTF-8'}{/if}" title="{if !empty($product.legend)}{$product.legend|escape:'html':'UTF-8'}{else}{$product.name|escape:'html':'UTF-8'}{/if}" {if isset($homeSize)} width="{$homeSize.width}" height="{$homeSize.height}"{/if} itemprop="image" /> </a> {if isset($quick_view) && $quick_view} <a class="quick-view" href="{$product.link|escape:'html':'UTF-8'}" rel="{$product.link|escape:'html':'UTF-8'}"> <span>{l s='Quick view'}</span> </a> {/if} {if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))} <div class="content_price" itemprop="offers" itemscope itemtype="http://schema.org/Offer"> {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)} <span itemprop="price" class="price product-price"> {if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if} </span> <meta itemprop="priceCurrency" content="{$priceDisplay}" /> {if isset($product.specific_prices) && $product.specific_prices && isset($product.specific_prices.reduction) && $product.specific_prices.reduction} <span class="old-price product-price"> {displayWtPrice p=$product.price_without_reduction} </span> {if $product.specific_prices.reduction_type == 'percentage'} <span class="price-percent-reduction">-{$product.specific_prices.reduction * 100}%</span> {/if} {/if} {/if} </div> {/if} {if isset($product.new) && $product.new == 1} <span class="new-box"> <span class="new-label">{l s='New'}</span> </span> {/if} {if isset($product.on_sale) && $product.on_sale && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE} <span class="sale-box"> <span class="sale-label">{l s='Sale!'}</span> </span> {/if} </div> </div> <div class="right-block"> <h5 itemprop="name"> {if isset($product.pack_quantity) && $product.pack_quantity}{$product.pack_quantity|intval|cat:' x '}{/if} <a class="product-name" href="{$product.link|escape:'html':'UTF-8'}" title="{$product.name|escape:'html':'UTF-8'}" itemprop="url" > {$product.name|truncate:45:'...'|escape:'html':'UTF-8'} </a> </h5> {hook h='displayProductListReviews' product=$product} <p class="product-desc" itemprop="description"> {$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'} </p> {if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))} <div itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="content_price"> {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)} <span itemprop="price" class="price product-price"> {if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if} </span> <meta itemprop="priceCurrency" content="{$priceDisplay}" /> {if isset($product.specific_prices) && $product.specific_prices && isset($product.specific_prices.reduction) && $product.specific_prices.reduction} <span class="old-price product-price"> {displayWtPrice p=$product.price_without_reduction} </span> {if $product.specific_prices.reduction_type == 'percentage'} <span class="price-percent-reduction">-{$product.specific_prices.reduction * 100}%</span> {/if} {/if} {/if} </div> {/if} <div class="button-container"> {if ($product.id_product_attribute == 0 || (isset($add_prod_display) && ($add_prod_display == 1))) && $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && $product.customizable != 2 && !$PS_CATALOG_MODE} {if ($product.allow_oosp || $product.quantity > 0)} {if isset($static_token)} <a class="button ajax_add_to_cart_button btn btn-default" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}&token={$static_token}", false)|escape:'html':'UTF-8'}" rel="nofollow" title="{l s='Add to cart'}" data-id-product="{$product.id_product|intval}"> <span>{l s='Add to cart'}</span> </a> {else} <a class="button ajax_add_to_cart_button btn btn-default" href="{$link->getPageLink('cart',false, NULL, 'add=1&id_product={$product.id_product|intval}', false)|escape:'html':'UTF-8'}" rel="nofollow" title="{l s='Add to cart'}" data-id-product="{$product.id_product|intval}"> <span>{l s='Add to cart'}</span> </a> {/if} {else} <span class="button ajax_add_to_cart_button btn btn-default disabled"> <span>{l s='Add to cart'}</span> </span> {/if} {/if} <a itemprop="url" class="button lnk_view btn btn-default" href="{$product.link|escape:'html':'UTF-8'}" title="{l s='View'}"> <span>{l s='More'}</span> </a> </div> {if isset($product.color_list)} <div class="color-list-container">{$product.color_list} </div> {/if} <div class="product-flags"> {if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))} {if isset($product.online_only) && $product.online_only} <span class="online_only">{l s='Online only'}</span> {/if} {/if} {if isset($product.on_sale) && $product.on_sale && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE} {elseif isset($product.reduction) && $product.reduction && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE} <span class="discount">{l s='Reduced price!'}</span> {/if} </div> {if (!$PS_CATALOG_MODE && $PS_STOCK_MANAGEMENT && ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))} {if isset($product.available_for_order) && $product.available_for_order && !isset($restricted_country_mode)} <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="availability"> {if ($product.allow_oosp || $product.quantity > 0)} <span class="available-now"> <link itemprop="availability" href="http://schema.org/InStock" />{l s='In Stock'} </span> {elseif (isset($product.quantity_all_versions) && $product.quantity_all_versions > 0)} <span class="available-dif"> <link itemprop="availability" href="http://schema.org/LimitedAvailability" />{l s='Product available with different options'} </span> {else} <span class="out-of-stock"> <link itemprop="availability" href="http://schema.org/OutOfStock" />{l s='Out of stock'} </span> {/if} </span> {/if} {/if} </div> {if $page_name != 'index'} <div class="functional-buttons clearfix"> {hook h='displayProductListFunctionalButtons' product=$product} {if isset($comparator_max_item) && $comparator_max_item} <div class="compare"> <a class="add_to_compare" href="{$product.link|escape:'html':'UTF-8'}" data-id-product="{$product.id_product}">{l s='Add to Compare'}</a> </div> {/if} </div> {/if} </div><!-- .product-container> --> </li> {/foreach} </ul> {addJsDefL name=min_item}{l s='Please select at least one product' js=1}{/addJsDefL} {addJsDefL name=max_item}{l s='You cannot add more than %d product(s) to the product comparison' sprintf=$comparator_max_item js=1}{/addJsDefL} {addJsDef comparator_max_item=$comparator_max_item} {addJsDef comparedProductsIds=$compared_products} {/if} {/if} {/if} Viu ai ficou assim eu adicinei o {if $logged} e {/if} mas ai ele desaparece com os produtos do site... mesmo eu estando ou nao logado. Na verdade que queria saber se da pra fazer assim, quando o cliente nao esta logado ele ve TUDO MENOS OS VALORES, quando ele esta logado ele ve TUDO ATE O PRECO, tem como? obrigado pela ajuda Alex Link to comment Share on other sites More sharing options...
Allexb10 Posted April 4, 2014 Author Share Posted April 4, 2014 Primeiramente voce tem que definir exatamente o que quer que seja ocultado do visitante do seu site. Depois disso, deve inserir este {if} somente no local a ser ocultado. Por exemplo, se quiser ocultar o valor, deve procurar no código, a div ou spam ou li que contenha esta informação. Se colocar o {if} no código todo não irá funcionar. Lembrando que acredito que deva inserir também na página product.tpl ou seja, em todo local que apareça as informações que deseja ocultar. Consegui ser claro? Link to comment Share on other sites More sharing options...
selectshop.at Posted April 5, 2014 Share Posted April 5, 2014 Para que os clientes nao vejam os precos vc. deve procurar todos os blocos com <div .... que contenham a variável "prices" e acrescentar lá como primeira linha no bloco a condicao {if logged} Link to comment Share on other sites More sharing options...
andrespilari Posted April 5, 2014 Share Posted April 5, 2014 Boa noite amigos entao Alex e Selectshop.at, percebi que vcs responderam no mesmo sentido... quer dizer que o caminho é esse vou tentar fazer isso e qquer coisa peço ajuda mais uma vez... muito obrigado novamente. abracos outra pergunta por exemplo em uma condicao assim, eu coloco dessa forma? <p class="product-name"><span class="product_name">{$product.details->name}</span></p> <div class="description">{$product.details->description_short|strip_tags|truncate:170:'...'}</div> {if !$PS_CATALOG_MODE AND $product.details->show_price} {if logged} ou {if $logged} <div class="prices"> {if isset($product.details->new) AND $product.details->new}<span class="new-box"><span class="new-label">{l s='New'}</span></span>{/if} <p class="price product-price">{if $priceDisplay}{convertPrice price=$product.details->getPrice(false, $product.details->getDefaultAttribute($product.id_product))}{else}{convertPrice price=$product.details->getPrice(true, $product.details->getDefaultAttribute($product.id_product))}{/if}</p> {if $product.details->on_sale} <span class="sale-box"><span class="sale-label">{l s='Sale'}</span></span> {elseif isset($product.reduction) && $product.reduction} <span class="discount">{l s='Reduced price!'}</span> {/if} {/if} </div> {/if} Seria esse caminho ou esta bem longe ainda? Link to comment Share on other sites More sharing options...
Allexb10 Posted April 5, 2014 Author Share Posted April 5, 2014 Exatamente André, Só deve tomar cuidado em onde abre e fecha o {if}, senão poderá desconfigurar seu CSS. Vai inserindo e vai testando, mas é isso mesmo. Como citei acima, é possível que você terá que alterar em outras páginas também. Mas é só seguir esta regra que vai dar certo. Boa sorte! Link to comment Share on other sites More sharing options...
andrespilari Posted April 5, 2014 Share Posted April 5, 2014 (edited) Bom dia Alex, fecho, vou tomar cuidado e ir testando, muito obrigado pela ajuda por enquanto. Fica c Deus Edited April 5, 2014 by andrespilari (see edit history) Link to comment Share on other sites More sharing options...
gpzim98 Posted September 22, 2015 Share Posted September 22, 2015 Olá, tem sim, muito simples. Grupos > Visitantes e desabilitar para mostrar preços. Link to comment Share on other sites More sharing options...
selectshop.at Posted September 22, 2015 Share Posted September 22, 2015 Olá, tem sim, muito simples. Grupos > Visitantes e desabilitar para mostrar preços. Isto depende muito da versao Prestashop em uso. Este Thread já tem mais de dois anos.... PS 1.5.x - negativo, nao funciona PS 1.6.0.x negativo, nao funciona PS 1.6.1. - a partir desta versao parece funcionar. Só que necessita de retrabalho para informar que os precos somente sao mostrados à usuários com conta verificada. 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