Jump to content

Condition en smarty


Recommended Posts

Bonjour,

 

Je ne suis pas codeur mais je souhaiterais faire une condition assez simple à première vue.

Je souhaiterais que si la catégorie du produit est "catégorie1' ou "catégorie2" dans ce cas si le client clique sur le bouton "demande de devis" ca le renvoie vers le formulaire de contact. Dans les autres cas ça ajoute le produit au panier. C'est le renvoi vers le formulaire de contact (la ligne 1 et 2) qui ne fonctionne pas. Une idée?

 

Merci beaucoup.

{if $TypeAcquisition==1 OR $product.regular_price<0}
 	<a href="https://www.monsite.com/nous-contacter/" ><button class="btn btn-primary add-to-cart" >Demande de devis</button></a>
 {else}
<div class="product-add-to-cart">
  {if !$configuration.is_catalog}
   

    {block name='product_quantity'}
      <div class="product-quantity clearfix">
        <div class="qty">
          <input
            type="text"
            name="qty"
            id="quantity_wanted"
            value="{$product.quantity_wanted}"
            class="input-group"
            min="{$product.minimal_quantity}"
            aria-label="{l s='Quantity' d='Shop.Theme.Actions'}"
          >
        </div>

        <div class="add">
          <button
            class="btn btn-primary add-to-cart"
            data-button-action="add-to-cart"
            type="submit"
            {if !$product.add_to_cart_url}
              disabled
            {/if}
          >
            <img src="/img/cart-orange.png" class="cart-orange" />
            {l s='Add to cart' d='Shop.Theme.Actions'}
          </button>
        </div>
      </div>
    {/block}

 

Link to comment
Share on other sites

J'ai essayé avec ca mais j'ai une erreur générée :

{**
 * 2007-2018 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License 3.0 (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:
 * https://opensource.org/licenses/AFL-3.0
 * 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 <contact@prestashop.com>
 * @copyright 2007-2018 PrestaShop SA
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 * International Registered Trademark & Property of PrestaShop SA
 *}
 {assign var=TypeAcquisition value=FrontController::getTypeAcquisition($product.id_product)}
                                                         
     {if $category.id==51 OR $category.id==53}
    <a href="https://www.monsite.com/nous-contacter/" ><button class="btn btn-primary add-to-cart" >Demande de devis</button></a>
    {else}
<div class="product-add-to-cart">
  {if !$configuration.is_catalog}
    
 
    {block name='product_quantity'}
      <div class="product-quantity clearfix">
        <div class="qty">
          <input
            type="text"
            name="qty"
            id="quantity_wanted"
            value="{$product.quantity_wanted}"
            class="input-group"
            min="{$product.minimal_quantity}"
            aria-label="{l s='Quantity' d='Shop.Theme.Actions'}"
          >
        </div>
 
        <div class="add">
          <button
            class="btn btn-primary add-to-cart"
            data-button-action="add-to-cart"
            type="submit"
            {if !$product.add_to_cart_url}
              disabled
            {/if}
          >
            <img src="/img/cart-orange.png" class="cart-orange" />
            {l s='Add to cart' d='Shop.Theme.Actions'}
          </button>
        </div>
      </div>
    {/block}
 
    {block name='product_availability'}
         
      <span id="product-availability" class="subtitle23" style="text-transform:uppercase;">
        {if $product.show_availability && $product.availability_message}
          {if $product.availability == 'available'}
            <i class="material-icons rtl-no-flip 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}
     
    {block name='product_minimal_quantity'}
      <p class="product-minimal-quantity">
        {if $product.minimal_quantity > 1}
          {l
          s='The minimum purchase order quantity for the product is %quantity%.'
          d='Shop.Theme.Checkout'
          sprintf=['%quantity%' => $product.minimal_quantity]
          }
        {/if}
      </p>
    {/block}
  {/if}
</div>
{/if}

(1/1) FatalThrowableError

Cannot use object of type Category as array

in 10548349e690a86850e6f111d46f0f5380135f69_2.file.product-add-to-cart.tpl.php line 29

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