Product page extra fields
-
Hello,
Is it posible to add text field with informations below image variations(screenshot.png)?
Best regards.
Attachments:
You must be
logged in to view attached files.
Hello,
Unfortunately, WooCommerce does not provide such an option. You will have to customize product page or find a plugin.
Best Regards
Thank you!
What hook displays Extra content(position After content) on product page?
Is it <?php do_action( ‘woocommerce_after_variations_form’ ); ?> or something else?
and in which file(variable.php…)?
Best regards
We added that content to the hook called woocommerce_single_product_summary
. You can find the code in the file inc/woocommerce.php
.
Regards
Hi,
I found solution.
Just move do_action( ‘woodmart_after_product_content’ );
after do_action( ‘woocommerce_single_product_summary’ ); in wp-content\themes\woodmart\woocommerce\content-single-product.php
Best regards
Great, we are glad that you found the solution.