Home › Forums › WoodMart support forum › description
description
- This topic has 8 replies, 2 voices, and was last updated 1 month, 1 week ago by Aizaz Imtiaz Awan.
-
AuthorPosts
-
October 1, 2024 at 7:22 pm #601780
mahnazParticipant“Hello, how can I change the word ‘description’ on the product page? My website is in French, and in the future, we plan to add an English version. without plugin
Attachments:
You must be logged in to view attached files.October 2, 2024 at 11:05 am #601918
Aizaz Imtiaz AwanKeymasterHello,
Try to add the following code in the function.php of the child theme to rename the products tabs.
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; }
Best Regards
October 2, 2024 at 3:37 pm #602030
mahnazParticipantThanks. One question: I updated WordPress to the French version, and I also changed the language to French. However, I still see a lot of English text, such as ‘cart’ and ‘my account.’ I changed the names from the pages or menu links, but I noticed that the theme couldn’t translate them. Should I change them one by one with code?
October 2, 2024 at 4:15 pm #602041
mahnazParticipantfor example this part show filter
Attachments:
You must be logged in to view attached files.October 3, 2024 at 8:52 am #602133
Aizaz Imtiaz AwanKeymasterHello,
To change the text Try to use the loco translate plugin for this:
https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/If you have any questions feel free to contact us.
Best Regards
October 8, 2024 at 5:57 pm #603485
mahnazParticipantthanks, if i want change the only my account and filter name , how should i do ?
Attachments:
You must be logged in to view attached files.October 9, 2024 at 9:31 am #603601
Aizaz Imtiaz AwanKeymasterHello,
Try to use the loco translate plugin for this to change the text.
https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/Best Regards
October 9, 2024 at 5:44 pm #603817
mahnazParticipantI need somthing like that :
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;
}
only for my accountOctober 10, 2024 at 8:53 am #603938
Aizaz Imtiaz AwanKeymasterHello,
To change the text you need to install and use the loco translate plugin.
We suggest you add a Custom button with the text and icon you need from Theme Settings >> General >> Mobile Bottom Navbar.
Screenshot:https://ibb.co/BscfZhKBest Regards
-
AuthorPosts
Tagged: translate
- You must be logged in to create new topics. Login / Register