task 6809 | фикс бага с выводом аттрибутов в рекоммендуемых товарах (на вход функции необходимо дать Timber а не WC объект)

pull/36/head
parent 16e38a78b4
commit 1aaeea3cfb
  1. 3
      wp-content/themes/cosmopet/templates/_pages/shop/product-single.twig

@ -368,8 +368,9 @@
<div class="detail-catalot__content swiper-wrapper"> <div class="detail-catalot__content swiper-wrapper">
{% for related_product in related_products %} {% for related_product in related_products %}
<div class="swiper-slide"> <div class="swiper-slide">
{% set post_id = related_product.ID is defined ? related_product.ID : related_product %} {% set post_id = related_product.ID is defined ? related_product.ID : related_product %}
{% set wc_product = fn('wc_get_product', post_id) %} {% set wc_product = TimberPost(post_id) %}
{% if wc_product %} {% if wc_product %}
{% include '_blocks/shop/archive-product-tease.twig' with {post: wc_product} %} {% include '_blocks/shop/archive-product-tease.twig' with {post: wc_product} %}
{% endif %} {% endif %}

Loading…
Cancel
Save