Home Forums Themes Support Claue how to add the sku code in product list page

Topic Resolution: Not Resolved
Viewing 2 reply threads
  • Author
    Posts
    • #20211
      Anonymous

      how to add the sku code in product list page

    • #20378
      Anonymous

      ???

    • #20387

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

      add_action( 'woocommerce_shop_loop_item_title', 'custom_before_title', 5 );
      function custom_before_title() {
      
          global $product;
      
          if ( $product->get_sku() ) {
              echo '<div>SKU:'.$product->get_sku().'</div>';
          }
      
      }

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

Viewing 2 reply threads

You must be logged in to reply to this topic.