Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

product_listing.html

nach:


Codeblock
{strip}

einfügen:

Codeblock
{load_language_text section="reviews" name="reviews"}


nach:

Codeblock
{if isset($rich_snippet_content.$key)}
{$rich_snippet_content.$key.rating_itemprop_ratingValue}
{/if}
</div>

...

Codeblock
                                        {if $module_data.VERIFY_OUT}
                                            <div class="rating-not-verify">
                                                {if $module_data.VERIFY_LINK}
                                                    <a href="{$module_data.VERIFY_LINK}">{$reviews.not_verify}</a>
                                                {else}
                                                    {$reviews.not_verify}
                                                {/if}
                                            </div>
                                        {else}
                                            <div class="rating-verify">
                                                {if $module_data.VERIFY_LINK}
                                                    <a href="{$module_data.VERIFY_LINK}">{$reviews.verify}</a>
                                                {else}
                                                    {$reviews.not_verify}
                                                {/if}
                                            </div>
                                        {/if}

products_reviews.html

nach:

Codeblock
                                {if isset($rich_snippet_content.$key)}
									{$rich_snippet_content.$key.rating_itemprop_ratingValue}
								{/if}
							</div>

einfügen:

Codeblock
                            {if $module_data.VERIFY_OUT}
                                <div class="rating-not-verify">
                                    {if $module_data.VERIFY_LINK}
                                        <a href="{$module_data.VERIFY_LINK}">{$txt.not_verify}</a>
                                    {else}
                                        {$txt.not_verify}
                                    {/if}
                                </div>
                            {else}
                                <div class="rating-verify">
                                    {if $module_data.VERIFY_LINK}
                                        <a href="{$module_data.VERIFY_LINK}">{$txt.verify}</a>
                                    {else}
                                        {$txt.not_verify}
                                    {/if}
                                </div>
                            {/if}