Answer the question
In order to leave comments, you need to log in
How to display a specific block in a specific woocommerce product category?
<?php
/**
* Single Product Price, including microdata for SEO
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $product;
?>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<p class="price"><?php echo $product->get_price_html(); ?></p>
<div id="zakazat"><a href="#">Кнопка на правила заказа</a></div> /*Вот этот блок мне нужно вывести на страницах определенной категории, сразу после цены.*/
<meta itemprop="price" content="<?php echo $product->get_price(); ?>" />
<meta itemprop="priceCurrency" content="<?php echo get_woocommerce_currency(); ?>" />
<link itemprop="availability" href="http://schema.org/<?php echo $product->is_in_stock() ? 'InStock' : 'OutOfStock'; ?>" />
</div>
Answer the question
In order to leave comments, you need to log in
<?php if ( in_category(47) ): ?>
<div><a href="#">Кнопка на правила заказа</a></div>
<?php endif; ?>
$cat_n = 47;
if ( in_category($cat_n) ) {
include(TEMPLATEPATH . '/beidj.php');}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question