how can i use my own additional information of my products for example
Gross weight-
Diamond weight-
with each product having different data i want to import it while importing products. pls guide me
sazunajewellers.com
This topic has 8 replies, 3 voices, and was last updated 4 months, 3 weeks ago ago by Luca Rossi
how can i use my own additional information of my products for example
Gross weight-
Diamond weight-
with each product having different data i want to import it while importing products. pls guide me
sazunajewellers.com
Hello,
Thank you for reaching out to us.
The “Additional Information” tab will only show if the product has weight, dimensions or attributes (with “Visible on the product page” checked https://prnt.sc/QZxqRU4VwF5S ).
Best Regards,
8Theme’s Team
how can i create own tab with which shows each product dynamic details . so that while product upload i can set the details in sheet
Hello,
Could you kindly provide a specific example of the desired outcome?
Best Regards,
8Theme’s Team
pls check
Dear @ubansal,
We would like to inform you that product attributes can be displayed under the “Additional Information” tab.
For guidance on importing product attributes, we recommend reviewing the following articles:
– [How to Import Product Attributes in WooCommerce](https://www.wpallimport.com/documentation/how-do-i-import-product-attributes-in-woocommerce/)
– [WooCommerce: Import Products with Attributes](https://www.webtoffee.com/woocommerce-import-products-with-attributes/)
We hope you find this information helpful.
Best regards,
8Theme Team
how do i hide the additional tabs?
Hi @ubansal,
Please add the following code under functions.php file locates in your XStore child theme:
add_filter( 'woocommerce_product_tabs', 'bbloomer_remove_product_tabs', 9999 );
function bbloomer_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
Hope it helps!
You must be logged in to reply to this topic.Log in/Sign up