Your account expired support, please renew to get your support.

Home Forums Themes Support Claue Woocommerce Product Details

Viewing 1 reply thread
  • Author
    Posts
    • #34155
      rankelvin
      Support Expired

      Hello,

      Is there a way to always show the product details on the product page?

      Thanks!

      Kelvin

    • #34156
      Harry
      Support Expired

      Hi Kevin,

      You mean you want show product description on category page?

      Please add below code to claue-child > functions.php

      // WooCommerce, Add Short Description to Products on Shop Page
      add_action( 'woocommerce_after_shop_loop_item_title', 'wc_add_short_description', 5 );
      function wc_add_short_description() {
      	global $product;
      
      	?>
              <div itemprop="description">
                  <?php echo apply_filters( 'woocommerce_short_description', $product->post-> post_excerpt ) ?>
              </div>
      	<?php
      }

      Kind regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

Viewing 1 reply thread

You must be logged in to reply to this topic.