Answer the question
In order to leave comments, you need to log in
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);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question