在prestashop中的产品下添加共享按钮

时间:2011-11-24 03:52:43

标签: php share prestashop

我从添加到任何社交网络共享按钮。我想将它放在我的所有产品之下。

我在我的主题中编辑了product.tpl并添加了由他们给出的addToAny代码。但它没有显示出来。

<!-- number of item in stock -->
            {if ($display_qties == 1 && !$PS_CATALOG_MODE && $product->available_for_order)}
            <p id="pQuantityAvailable"{if $product->quantity <= 0} style="display: none;"{/if}>
                <span id="quantityAvailable">{$product->quantity|intval}</span>
                <span {if $product->quantity > 1} style="display: none;"{/if} id="quantityAvailableTxt">{l s='item in stock'}</span>
                <span {if $product->quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple">{l s='items in stock'}</span>
            </p>

<div>
//Adding my addToAny share code here
</div>

            {/if}
            <!-- Out of stock hook -->
            {if !$allow_oosp}
            <p id="oosHook"{if $product->quantity > 0} style="display: none;"{/if}>
                {$HOOK_PRODUCT_OOS}
            </p>
            {/if}

1 个答案:

答案 0 :(得分:0)

在管理员面板中 转到 - &gt;偏好 - &gt;表现 - &gt;选择强制编译为是。 Smarty不会编译,直到你把它设置为是。