Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1978841
WooCommerce Short Description
Closed

Comments

  • jcpacelli started the conversation

    How would I add a div directly after woocommerce-product-details__short-description which is within single-product-content-right?


    I've looked through the theme files and can't figure out where to add this. I can of course add it after single-product-content-right but don't know how to put it inside single-product-content-right

  •  7,128
    Oliver replied

    Hi,

    Code example:

    function my_custom_function() {
        echo '<div> test test test </div>';
    }
    add_action('thegem_woocommerce_single_product_right', 'my_custom_function', 37);
    

    Add it to the functions.php of the child theme.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver