H
H
hooli-gun2021-09-10 16:18:46
WordPress
hooli-gun, 2021-09-10 16:18:46

How to hide the title if the description field is empty?

How to hide section-title when nothing is added in the product overview?

<div class="woocommerce-product__tab-item woocommerce-product__review">
                <h3 class="section-title"><?php pll_e('Огляд'); ?></h3>
                <?php echo the_content(); ?>
</div>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Artem Zolin, 2021-09-10
@hooli-gun

if ( !empty( get_the_content() ) ) { ?>
  <h3 class="section-title"><?php pll_e('Огляд'); ?></h3>
  <?php echo the_content(); ?>
<?php }

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question