我正在建立一个WooCommerce网站,同时利用Twig模板系统和Timber WordPress插件,并跟随this guide来创建挑逗模板。
但是,查看WooCommerce自己的默认templates/content-product.php
,他们将其放在最顶部:
// Ensure visibility.
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
所以我认为我们应该在模板文件中进行相同的检查吗?但是我不确定如何在Twig中检查此值。
我尝试过dump(post.is_visible())
,但每个人都返回(bool) false
。
我不知道showthumb
的来源,也找不到关于此特定设置/属性的太多信息或文档。
编辑:这是我的控制器:(my-theme / woocommerce / archive-product.php)
$context = Timber::get_context();
$context['shop-sidebar'] = Timber::get_widgets( 'shop-sidebar' );
$posts = Timber::get_posts();
$context['products'] = $posts;
if ( is_product_category() ) {
$queried_object = get_queried_object();
$term_id = $queried_object->term_id;
$context['category'] = get_term( $term_id, 'product_cat' );
$context['title'] = single_term_title( '', false );
}
Timber::render( 'views/woo/archive.twig', $context );
这是我的 archive.twig 文件:
{% extends 'archive.twig' %} {# Base Archive File #}
{% block before_article %}
{% do action('woocommerce_before_main_content') %}
{% endblock %}
{% block below_h1 %}
{% do action('woocommerce_archive_description') %}
{% endblock %}
{% block primary_block %}
{% if products|length > 0 %}
<div class="before-products">
{% do action('woocommerce_before_shop_loop') %}
</div>
<div class="products-wrap">
<div class="products row flex">
{% for post in products %}
<div class="product col-sm-6 col-md-4">
{% do action('woocommerce_shop_loop') %}
{% include ["woo/partials/tease-product.twig"] %}
</div>
{% endfor %}
</div>
</div>
<div class="after-products">
{% do action('woocommerce_after_shop_loop') %}
</div>
{% else %}
<div class="no-products">
{% do action('woocommerce_no_products_found') %}
</div>
{% endif %}
{% endblock %}
{% block after_article %}
{% do action('woocommerce_after_main_content') %}
{{ parent() }}
{% endblock %}
这是我的 tease-product.twig 文件:
<article {{ fn('post_class', ['entry'] ) }}>
{{ fn('timber_set_product', post) }}
<div class="media">
<div class="media-figure {% if not post.thumbnail %}placeholder{% endif %}">
<a href="{{ post.link }}">
{% if post.thumbnail %}
<img src="{{ post.thumbnail.src|resize(600)|e('esc_url') }}" class="img-responsive" />
{% else %}
<span class="thumb-placeholder"><i class="icon-camera"></i></span>
{% endif %}
</a>
</div>
<div class="media-content">
{% do action('woocommerce_before_shop_loop_item') %}
{% do action('woocommerce_before_shop_loop_item_title') %}
{% if post.title %}
<h3 class="entry-title"><a href="{{ post.link }}">{{ post.title }}</a></h3>
{% else %}
<h3 class="entry-title"><a href="{{ post.link }}">{{ fn('the_title') }}</a></h3>
{% endif %}
{% do action( 'woocommerce_after_shop_loop_item_title' ) %}
{% do action( 'woocommerce_after_shop_loop_item' ) %}
</div>
</div>
</article>
如何获取is_visible
方法的正确值?
答案 0 :(得分:0)
我认为OP已经解决了这个问题。但是,供以后参考...
您应该能够执行{{ post.is_visible }}
来输出值。
类似地,下面的两个if
语句都对我有用。
{% if (product.is_visible) %}
{% if (product.is_visible()) %}
现在,我对WooCommerce和Timber还是陌生的,对is_visible
的了解也不多,所以如果我错了,我深表歉意。但是,我知道我可以在树枝模板中使用WC_Product member functions,例如{{variable。 function_name }}}。 {{ product.get_title }}
或{{ product.get_price }}
,所以我希望is_visible
没什么不同。