Tagged: Product, product pages, single product, woocommerce
-
AuthorPosts
-
September 25, 2018 at 11:49 pm #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.
September 25, 2018 at 11:55 pm #1014493Hey Jason,
Please provide a screenshot of the area you want modified, and a link to the site/page in question.
Best regards,
Jordan ShannonSeptember 25, 2018 at 11:59 pm #1014496I 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/
September 26, 2018 at 12:01 am #1014497I would still like to move that additional information out of the tab section and just place it underneath the short description, anyway possible?
September 26, 2018 at 12:11 am #1014498September 26, 2018 at 1:34 pm #1014716Hi,
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,
PeterSeptember 26, 2018 at 9:38 pm #1015001now 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
September 27, 2018 at 8:05 am #1015144 -
AuthorPosts
- You must be logged in to reply to this topic.