Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1235256

    So i managed to move product description out of tabs and was able to hook it after the product summary, but in doing so, alot of the enfold functionality doesn’t get applied like the column layout styling and what not. Is there anyway to avoid this from happening. I provided screen shots of what it should look like when its in the product summary and what it looks like after the product summary.

    Production Description after product summary: https://imgur.com/DY1R60d

    Code:

    
    function woocommerce_template_product_description() {
    	echo '<div class="proddesc">';
    wc_get_template( 'single-product/tabs/description.php' );
    	echo '</div>';
    }
    add_action( 'woocommerce_after_single_product_summary', 'woocommerce_template_product_description', 60 );
    

    production description in product summary: https://imgur.com/wfBTaj4

    code:

    function woocommerce_template_product_description() {
    	echo '<div class="proddesc">';
    wc_get_template( 'single-product/tabs/description.php' );
    	echo '</div>';
    }
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_product_description', 60 );
    
    #1235259

    Actually i think i figured it out… these woocommerce hooks are tricky but powerful! but still any insight will be helpful :)

    #1235613

    Hi,

    Thanks for the update. Did you get things working or do you still need help with this?

    Best regards,
    Rikard

    #1235849

    Nope i am good now! Thanks though! but i still need this to be answered: https://kriesi.at/support/topic/click-anywhere-on-fullwidth-overlay-to-close/ :D :D

    #1235881

    Hi,

    We will go look at the other thread. Should you need anything else, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Moving WooCommerce product description outside of product summary breaks style’ is closed to new replies.