• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

virusword.com

Learn Wordpress

  • Home
  • WordPress Shop
    • Fotopress
    • SEO Tool Kit
    • Social Contact
    • Tag Machine 2
    • Video Profits
  • Latest News
  • WordPress
    • Plugins
    • Themes
    • Tutorials
    • Videos
    • Woocommerce
  • About Us
  • Contact Us
    • Terms of Service
    • Privacy Policy
  • Show Search
Hide Search
Home/Videos/How To Edit WooCommerce Product Page | Detailed Tutorial

How To Edit WooCommerce Product Page | Detailed Tutorial



💥Check out the Best WooCommerce Themes from TemplateMonster:
https://www.templatemonster.com/woocommerce-themes.php?utm_source=youtube&utm_medium=social&utm_campaign=wordpress&utm_term=How-to-edit-Woocommerce-product-page

00:00 Introduction
01:23 Product page overview
01:57 Removing reviews
03:25 Accessing theme editor
04:54 Removing additional information tab
06:25 Removing related products
07:31 Removing SKU
09:30 Removing tags with CSS
14:10 Adding back SKU and tags
15:08 Getting rid of meta (SKU, tags, Category).
16:22 Restoring SKU
18:10 Restoring Categories (tags are disabled, SKU is available)
19:54 Accessing product page template file
21:45 Woocommerce Product Add-Ons for editing product page
23:51 WPbakery Add-Ons (Woo Detail Product Page Builder)
24:54 Elementor Woocommerce builder
25:56 Changing a template as a way to get a custom product page
26:53 Product page with yellow color and specific layout
27:38 Content is centered, banner on right side
28:30 Minimalistic, yet unique design
29:29 Centered content, banners carousel on the right side
30:24 Performing customization service to a current or new website
31:40 Conclusion

Sources used in this tutorial:
https://www.businessbloomer.com/woocommerce-hide-category-tag-single-product-page/
https://www.businessbloomer.com/woocommerce-hide-sku-front-end/

👉 Kastery – Wood Furniture Store WooCommerce Theme by codezeel
https://www.templatemonster.com/woocommerce-themes/kastery-wood-furniture-store-woocommerce-theme-117880.html?utm_source=youtube&utm_medium=social&utm_campaign=wordpress&utm_term=How-to-edit-Woocommerce-product-page

WooCommerce themes shown in this video:
👉 OPUS – Book Store WooCommerce Theme by ramsthemes
https://www.templatemonster.com/woocommerce-themes/opus-book-store-woocommerce-theme-158526.html?utm_source=youtube&utm_medium=social&utm_campaign=wordpress&utm_term=How-to-edit-Woocommerce-product-page

👉 FoodLab – Restaurant Food Store WooCommerce Theme by codezeel
https://www.templatemonster.com/woocommerce-themes/foodlab-restaurant-food-store-woocommerce-theme-145598.html?utm_source=youtube&utm_medium=social&utm_campaign=wordpress&utm_term=How-to-edit-Woocommerce-product-page

👉 WOOLF – Furniture and Home Gadgets WooCommerce Theme by ramsthemes
https://www.templatemonster.com/woocommerce-themes/woolf-store-multipurpose-woocommerce-theme-81335.html?utm_source=youtube&utm_medium=social&utm_campaign=wordpress&utm_term=How-to-edit-Woocommerce-product-page

👉 Buyway – The Multipurpose Responsive WooCommerce Theme by Thementic
https://www.templatemonster.com/woocommerce-themes/buyway-the-multipurpose-responsive-woocommerce-theme-148681.html?utm_source=youtube&utm_medium=social&utm_campaign=wordpress&utm_term=How-to-edit-Woocommerce-product-page

#WordPress #WordPressTutorial #WooCommerce

〰 〰 〰
Subscribe to our channel to learn more about web design: https://www.youtube.com/user/TemplateMonsterCo/

Follow us on social media:
🔖Facebook https://www.facebook.com/TemplateMonster/
🐦Twitter https://twitter.com/templatemonster
📷Instagram https://www.instagram.com/template_monster/
📎Pinterest https://www.pinterest.com/templatemonster/

source

Written by:
Abdul Wahid
Published on:
December 6, 2022

Categories: VideosTags: customize single product page woocommerce plugin, customize woocommerce product page, ecommerce wordpress, elementor woocommerce, how to edit woocommerce product page, templatemonster, templatemonster.com, templatemonster8, templatemonsterco, woocommerce enable review, WooCommerce For Beginners, Woocommerce Product Addons, woocommerce product page, woocommerce product page customization, woocommerce tutorial, woocommerce tutorial videos, wordpress ecommerce website tutorial

Reader Interactions

Comments

  1. TemplateMonster

    December 6, 2022 at 10:17 pm

    The code snippets. Copy and Paste!

    /**

    * Remove Additional information

    */

    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 9999 );

    function woo_remove_product_tabs( $tabs ) {

    unset( $tabs['additional_information'] );

    return $tabs;

    }

    /**

    * Remove related products

    */

    remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );

    /**

    * Remove SKU

    */

    function sv_remove_product_page_skus( $enabled ) {

    if ( ! is_admin() && is_product() ) {

    return false;

    }

    return $enabled;

    }

    add_filter( 'wc_product_sku_enabled', 'sv_remove_product_page_skus' );

    /**

    * Remove tags with CSS

    */

    span.tagged_as {

    display: none !important;

    }

    With selector:

    div.product_meta > span.tagged_as {

    display: none !important;

    }

    /**

    * Remove product meta: tags, SKU and categories

    */

    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );

    /**

    * Restore SKU

    */

    add_action( 'woocommerce_single_product_summary', 'woo_show_sku_single_product', 40 );

    function woo_show_sku_single_product() {

    global $product;

    ?>

    <div class="product_meta">

    <?php if ( wc_product_sku_enabled() && ( $product->get_sku() || $product->is_type( 'variable' ) ) ) : ?>

    <span class="sku_wrapper"><?php esc_html_e( 'SKU:', 'woocommerce' ); ?> <span class="sku"><?php echo ( $sku = $product->get_sku() ) ? $sku : esc_html__( 'N/A', 'woocommerce' ); ?></span></span>

    <?php endif; ?>

    </div>

    <?php

    }

    /**

    * Restore categories

    */

    add_action( 'woocommerce_single_product_summary', 'woo_show_cats_again_single_product', 40 );

    function woo_show_cats_again_single_product() {

    global $product;

    ?>

    <div class="product_meta">

    <?php echo wc_get_product_category_list( $product->get_id(), ', ', '<span class="posted_in">' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'woocommerce' ) . ' ', '</span>' ); ?>

    </div>

    <?php

    }

  2. Jack Bird

    December 6, 2022 at 10:17 pm

    awesome tutorial, you saved me a lot of time with editing my Product Page, thank you for your video. it is very clear and easy. But also from time to time, I have some trouble with product photosdescriptions from my supplier. Or they are too small or only one product photo which is too bad for my conversions. I have found a way to scrape and extract it for my WooCommerce e-scraper

    Maybe it helps somebody too.

  3. Infinity Tech

    December 6, 2022 at 10:17 pm

    Need your template plz

  4. Tom

    December 6, 2022 at 10:17 pm

    The content is good but the audio is painful to listen to.

Primary Sidebar

Wordpress

  • Content Management Systems (2)
  • Digital Marketing (4)
  • Internet Marketing (28)
  • Latest News (458)
  • Online Business (2)
  • Plugins (519)
  • Themes (521)
  • Videos (1,350)
  • Website Development (1)
  • Woocommerce (589)
  • WordPress (6)

Recent Articles

Unlock Your Internet Marketing Potential with WordPress: Tips, Tools, and Strategies

How to Use WordPress to Achieve Your Internet …

Continue Reading about Unlock Your Internet Marketing Potential with WordPress: Tips, Tools, and Strategies

Unlock Your Internet Marketing Potential: Harnessing the Power of WordPress

How to Use WordPress to Achieve Your Internet …

Continue Reading about Unlock Your Internet Marketing Potential: Harnessing the Power of WordPress

Search our site

Explore more

Get our Wordpress Guide Get Plugins Get Connected

Footer

VirusWord by Promaps, Inc.

Barnes Place
Colombo 7, Western 00700

Copyright © 2025 · Promaps, Inc.

Keep In Touch

  • Email
  • Facebook
  • Instagram
  • Pinterest
  • Twitter