Jump to content
  • 0

Proszę o pomoc - funkcje


mateusz.ragiel

Question

7 answers to this question

Recommended Posts

  • 0

spróbuj w ten sposób:

1 do pliku product-list.tpl dodaj kod, po tagu <p class="product-desc" itemprop="description">:
 

{* dodanie funkcji(cech/features) *}
{assign var='productFeatures' value=Product::getFrontFeaturesStatic(Context::getContext()->language->id, $product.id_product)}

{if count($productFeatures)}
<div class="product-features">
    <table>
        <tr>
            <th>
                {l s='Name'}
            </th>
            <th>
                {l s='Value'}
            </th>
        
        </tr>
    {foreach from=$productFeatures item=feature}
        <tr>
            <td>
                {$feature.name}
            </td>
            
            <td>
                {$feature.value}
            </td>
        
        </tr>
    {/foreach}
    </table>
</div>
{/if}
{ *end *}


2. w pliku global.js
    po:
        html += '<p class="product-desc">'+ $(element).find('.product-desc').html() + '</p>';

 

    dodaj:
        html += '<div class="product-features">'+$(element).find('.product-features').html() + '</div>';
                        
        
    po:
        html += '<p itemprop="description" class="product-desc">'+ $(element).find('.product-desc').html() + '</p>';
            
    dodaj:
        html += '<div class="product-features">'+ $(element).find('.product-features').html() + '</div>';
        
        
3. w pliku product_list.css dodaj
    
    ul.product_list.grid > li .product-container .product-features {
        display: none;
    }

Edited by atomek (see edit history)
  • Like 1
Link to comment
Share on other sites

  • 0

w product.tpl, przed zamknięciem diva pb-center-column

<div class="pb-center-column col-xs-12 col-sm-4">

...
...
...
...
...



{* wyświetlanie funkcji w oknie szybkiego podglądu *}

{if $content_only}
    {if isset($features) && $features}
        <!-- Data sheet -->
        <section class="page-product-box">
            <h3 class="page-product-heading">{l s='Data sheet'}</h3>
            <table class="table-data-sheet">
                {foreach from=$features item=feature}
                <tr class="{cycle values="odd,even"}">
                    {if isset($feature.value)}
                    <td>{$feature.name|escape:'html':'UTF-8'}</td>
                    <td>{$feature.value|escape:'html':'UTF-8'}</td>
                    {/if}
                </tr>
                {/foreach}
            </table>
        </section>
        <!--end Data sheet -->
    {/if}
{/if}


</div>
  • Like 1
Link to comment
Share on other sites

  • 0

 

w product.tpl, przed zamknięciem diva pb-center-column

<div class="pb-center-column col-xs-12 col-sm-4">

...
...
...
...
...



{* wyświetlanie funkcji w oknie szybkiego podglądu *}

{if $content_only}
    {if isset($features) && $features}
        <!-- Data sheet -->
        <section class="page-product-box">
            <h3 class="page-product-heading">{l s='Data sheet'}</h3>
            <table class="table-data-sheet">
                {foreach from=$features item=feature}
                <tr class="{cycle values="odd,even"}">
                    {if isset($feature.value)}
                    <td>{$feature.name|escape:'html':'UTF-8'}</td>
                    <td>{$feature.value|escape:'html':'UTF-8'}</td>
                    {/if}
                </tr>
                {/foreach}
            </table>
        </section>
        <!--end Data sheet -->
    {/if}
{/if}


</div>

niestety, nie działa

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