Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1014489

    So I am trying to modify the single product page. I am trying to remove the tabs but keep/display the information else where on that page. I want to keep the current layout (Image on the left, product information on the right) but I would like to not have the tabs. I would want the description then below the additional information. I have found how to remove the tabs but that removes it completely, i still want the information just not in tabs.

    #1014493

    Hey Jason,

    Please provide a screenshot of the area you want modified, and a link to the site/page in question.

    Best regards,
    Jordan Shannon

    #1014496

    I kind of already figured it out. I moved the the product description to the short product description. I would modify this as a custom product page but they will be pulling in 400 products. I think for future reference it would be nice to have the option to display description and additional information as either tabs or stand alone elements (I am not a big fan of the tabs)

    here is the fixed example: https://staging.idgadvertising.com/cornerstone/product/gh-lambs-bread-1964-supply-co/

    here is the example of a product page that has the description in the main text box and not short description: https://staging.idgadvertising.com/cornerstone/product/cloudhelmet-holistic-pain-relief/

    #1014497

    I would still like to move that additional information out of the tab section and just place it underneath the short description, anyway possible?

    #1014498

    screen shot of the area i want to modify

    #1014716

    Hi,

    Please try to add following code to the child theme functions.php to show the additional information below the product description:

    
    add_action( 'woocommerce_after_single_product_summary', 'avia_add_additional_information_below_product', 10 );
    function avia_add_additional_information_below_product(){
    global $product;
    do_action( 'woocommerce_product_additional_information', $product ); 
    }
    

    Best regards,
    Peter

    #1015001

    now how i expected it to work but i think i can get away with how i have it right now! thank you so much, dude! lol

    #1015144

    Hi,

    Thanks for the feedback, glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.