Jump to content

Márcio Silva

Members
  • Posts

    7
  • Joined

  • Last visited

About Márcio Silva

  • Birthday 09/09/1976

Profile Information

  • Location
    Brasil
  • Activity
    Developer

Recent Profile Visitors

1,466,314 profile views

Márcio Silva's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

1

Reputation

  1. I'm having shipping issues The ideal is for the customer to buy at any store and pay at any URL, this is easy to do, the problem is shipping. Stores with different addresses have different costs too, at checkout the freight is not separated or added, it takes into account the address of the store where the purchase is being finalized. In this case it is not feasible for physical products, for digital products it is great but physical products are not good. Ideally, freight should be calculated separately in the comparison cart EXAMPLE: Store A with address X freight charge 1 X Store B with address Y freight amount 2 X But Prestashop takes into account the shipping cost based on the store where the checkout is taking place.
  2. Hi I need show in categories only the label out stock. I not want show in stock and last itens Will possible criate a rule to show {$product.availability_message} only when product will be product-unavailable Code below ========================================================= {block name='product_availability'} <span id="product-availability"> {if $product.show_availability && $product.availability_message} {if $product.availability == 'available'} <i class="material-icons product-available">&#xE5CA;</i> {elseif $product.availability == 'last_remaining_items'} <i class="material-icons product-last-items">&#xE002;</i> {else} <i class="material-icons product-unavailable">&#xE14B;</i> {/if} {$product.availability_message} {/if} </span> {/block} ========================================================
  3. Hello everyone I use this code to generate installments of prices always worked in PS 1.6 but now does not work in PS 1.7. {if $product.price < 30} <div class="clearfix"></div> {else} <p style="font-size:14px;color: #F58134; font-weight: bold;"> {l s=" 3x de {convertPrice price=$product.price/3 } interest-free ."} </p> {/if}</span> <p style="font-size:14px; color:rgba(0,153,0,1);"> Deposit {convertPrice price=$product.price *5 /100 - $product.price}</p> Example results in product page PRICE = 90,00 OR 3X 30,00 OR DEPOSIT 84,50 5% discounted Would anyone have any idea Thanks!!
  4. Tenho várias lojas na Kinghost e não tenho nada a reclamar. Suporte em e telefone em português chamado tudo rápido. Prazo máximo de atendimento 24horas via chamado. Estão localizados em São Paulo. Uso e recomendo, sou cliente há mais de 10 anos. kinghost.com.br
  5. Olá Fiz um popup com modulo do FCK e funciona perfeito segue o link popupup
  6. Olá Ineri no arquivo product_tpl o seguinte sccript de parcelas sem juros e preço com desconto. {if $product.price < 50} <div class="clearfix"></div> {else} <p style="font-size:14px;"> {l s=" 10x de {convertPrice price=$product.price/10 } sem juros."} </p> {/if}</span> <p style="font-size:14px; color:rgba(0,153,0,1);"> Boleto {convertPrice price=$product.price *5 /100 - $product.price}</p> {/if}</div>{/if} funciona mas o preço fica com sinal negativo exemplo -R$ Valor do produto quero que fique R$ Valor do produto Como resolver?
×
×
  • Create New...