H
H
hypero2018-10-20 18:16:08
WooCommerce
hypero, 2018-10-20 18:16:08

Woocommerce hook?

Hello.
Such a problem.
I display the “woocommerce_single_product_summary” hook on functions.php to display the block in the product card.
It looks something like this:

function woocommerce_desc_information() {
    echo '<div class="product-description">';

  echo '<a href="' . get_field( 'fur_link' ) . '" class="product-description__block description-block">';
    echo '<span class="description-block__title description-title">';
      echo the_field('fur_title');
    echo '</span>';

    echo '<span class="description-block__image description-image">';
      echo '<img src="' . get_field( 'fur_img' ) . '" />';
    echo '</span>';
  echo '</a>';
  
     echo '</div>';
}
add_action('woocommerce_single_product_summary', 'woocommerce_desc_information', 35);

Is it possible to make some condition so that this block is displayed only on a certain category of goods?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question