Prestashop: Как добавить собственную строку после размера атрибута?

0

Мне нужно добавить свою строку после атрибутов на моей странице продукта (в предварительном порядке). После "размера" в моем случае есть атрибут_label, group_5 "Размер" → после этого атрибута, чтобы добавить что-то вроде: "Найдите свой размер здесь, в нашем руководстве".

Чтобы добавить этот код:

<p class="find">Find your size in our guide <a href="htttp://bijutaniki.com/#">here</a></p>

Окончательный внешний вид должен выглядеть следующим образом:

Изображение 174551

В product.tpl выглядит так:

            <div class="product_attributes">
            {if isset($groups)}
            <!-- attributes -->
            <div id="attributes">
            <div class="clear"></div>
            {foreach from=$groups key=id_attribute_group item=group}
                {if $group.attributes|@count}
                    <fieldset class="attribute_fieldset">
                        <label class="attribute_label" for="group_{$id_attribute_group|intval}">{$group.name|escape:'htmlall':'UTF-8'} :&nbsp;</label>
                        {assign var="groupName" value="group_$id_attribute_group"}
                        <div class="attribute_list">
                        {if ($group.group_type == 'select')}
                            <select name="{$groupName}" id="group_{$id_attribute_group|intval}" class="attribute_select" onchange="findCombination();getProductAttribute();">
                                {foreach from=$group.attributes key=id_attribute item=group_attribute}
                                    <option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'htmlall':'UTF-8'}">{$group_attribute|escape:'htmlall':'UTF-8'}</option>
                                {/foreach}
                            </select>
                        {elseif ($group.group_type == 'color')}
                            <ul id="color_to_pick_list" class="clearfix">
                                {assign var="default_colorpicker" value=""}
                                {foreach from=$group.attributes key=id_attribute item=group_attribute}
                                <li{if $group.default == $id_attribute} class="selected"{/if}>
                                    <a id="color_{$id_attribute|intval}" class="color_pick{if ($group.default == $id_attribute)} selected{/if}" style="background: {$colors.$id_attribute.value};" title="{$colors.$id_attribute.name}" onclick="colorPickerClick(this);getProductAttribute();">
                                        {if file_exists($col_img_dir|cat:$id_attribute|cat:'.jpg')}
                                            <img src="{$img_col_dir}{$id_attribute}.jpg" alt="{$colors.$id_attribute.name}" width="20" height="20" /><br />
                                        {/if}
                                    </a>
                                </li>
                                {if ($group.default == $id_attribute)}
                                    {$default_colorpicker = $id_attribute}
                                {/if}
                                {/foreach}
                            </ul>
                            <input type="hidden" class="color_pick_hidden" name="{$groupName}" value="{$default_colorpicker}" />
                        {elseif ($group.group_type == 'radio')}
                            <ul>
                                {foreach from=$group.attributes key=id_attribute item=group_attribute}
                                    <li>
                                        <input type="radio" class="attribute_radio" name="{$groupName}" value="{$id_attribute}" {if ($group.default == $id_attribute)} checked="checked"{/if} onclick="findCombination();getProductAttribute();" />
                                        <span>{$group_attribute|escape:'htmlall':'UTF-8'}</span>
                                    </li>
                                {/foreach}
                            </ul>
                        {/if}
                        </div>
                    </fieldset>
                {/if}
            {/foreach}
            </div>
        {/if}
  • 1
    Какой у Вас вопрос? Вы знаете, где его поставить, вы знаете, что там поставить ..
  • 1
    Если вы хотите, чтобы вы поместили его в консоль, то почти внизу, прямо под </fieldset> вы бы поместили его.
Показать ещё 3 комментария
Теги:
prestashop-1.6
smarty
prestashop

1 ответ

0

Вы можете использовать ($ group.name == 'Size'} условный. Добавить его в group.type == select conditional.

{if ($group.name == 'Size')}
 <p class="find">Find your size in our guide <a href="htttp://bijutaniki.com/#">here</a></p>
{/if}

Измените "Размер" атрибута у вас есть другое имя.

Ещё вопросы

Сообщество Overcoder
Наверх
Меню