Hi,
On product page I have MORE INFO where is it and how can i change the text to how to use?
http://snag.gy/aTOs4.jpg
This topic has 8 replies, 4 voices, and was last updated 9 years, 10 months ago ago by Stan Russell
Hi,
On product page I have MORE INFO where is it and how can i change the text to how to use?
http://snag.gy/aTOs4.jpg
Hello,
“More Info” tab shows attributes you added for a product:
http://storage8.static.itmages.com/i/16/0127/h_1453898008_4936330_787f747a06.png
It’s default Woocommerce tab, unfortunately it can’t be edited, but you can hide it as described in their documentation:
https://docs.woothemes.com/document/editing-product-data-tabs/ (1. Removing Tabs), add the code to functions.php file in wp-content/themes/legenda directory.
Best regards,
Jack Richardson.
I prefer to rename the tab with the cod there:
add_filter( ‘woocommerce_product_tabs’, ‘woo_rename_tabs’, 98 );
function woo_rename_tabs( $tabs ) {
$tabs[‘description’][‘title’] = __( ‘More Information’ ); // Rename the description tab
$tabs[‘reviews’][‘title’] = __( ‘Ratings’ ); // Rename the reviews tab
$tabs[‘additional_information’][‘title’] = __( ‘Product Data’ ); // Rename the additional information tab
return $tabs;
}
where do I need to put it?
Hello,
you can insert this code in ‘functions.php’ file in wp-content/themes/legenda directory.
We recommend you to make this customization in Child Theme or make backup before editing functions.php file.
Regards,
Stan Russell.
Can you recommend a backup and protection supplement suitable
Hello,
Sorry, but you have to search for 3rd-party plugins yourself.
Regards,
Eva Kemp.
Thanks!
Hello Orna Ohayon,
you are welcome!
Regards,
Stan Russell.
The issue related to '‘MORE INFO button on single product page’' has been successfully resolved, and the topic is now closed for further responses