• Resolved chrissa0917

    (@chrissa0917)


    Hello! How do you remove the product and short description when you embed a product in a particular page, we only want the full and short description to appear in their individual product page, but not on shop page or any page where we embed the products in our flatsome theme

    I tried to use this code but it won’t work

    // Remove Short Description from WooCommerce Single Product Page
    remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 20 );

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support ckadenge (woo-hc)

    (@ckadenge)

    Hi there @chrissa0917,

    To remove the product and short description when you embed a product on a page using the Flatsome theme, you will need to add a custom code.

    Please note that customization of this type is out of scope of the support team, however, you can try the following code snippet:

    add_action( ‘woocommerce_single_product_summary’, ‘wc_remove_single_product_short_description’, 12 );

    function wc_remove_single_product_short_description()
    {
    global $post;
    global $product;
    if ( ! empty( $post->post_excerpt ) && 33 == $product->get_id() )
    {
    $post->post_excerpt = ”;
    echo $post->post_excerpt;
    }
    }

    If that does not help, I suggest the following:

    1. Running the exact question you’re asking, along with the code provided, through an AI platform like ChatGPT for recommendations/changes to your code;
    2. Checking whether there are existing plugins in the WordPress plugin repository that might be doing that already.
    3. Joining our WooCommerce Slack community (it does have a developer channel where you can ask coding questions): https://woo.com/community-slack/

    Hope it helps!

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – we’ll be here if and/or when you are ready to continue.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Woocommerce Removing product and short description’ is closed to new replies.