As per requirement i need to change the default text "Add your review" to "write review". I want to know which file is containing that default text.
Asked
Active
Viewed 578 times
1
-
grep -rni 'Add Your Review' – zhartaunik Aug 05 '15 at 11:39
-
@zhartaunik i didn't understand – Simmi Aug 05 '15 at 11:54
-
I gave you an example how to find file with that error. app/design/frontend/base/default/template/review/helper/summary.phtml here it is. You can copy this file to your theme and change directly there. @Marius variant is much better if you apply it – zhartaunik Aug 05 '15 at 11:58
-
thanx for your help – Simmi Aug 05 '15 at 13:21
1 Answers
1
Add this line in the file app/design/frontent/{package}/{theme}/locale/en_US/translate.csv
"Add Your Review","Write review"
for other languages than en_US add the same line in app/locale/{lang_CODE}/Mage_Review.csv
Marius
- 197,939
- 53
- 422
- 830
-
-
-
if you are using the modern theme, then it's correct. If the file does not exist in your theme just create it. – Marius Aug 05 '15 at 11:32
-
/app/design/frontend/rwd/default/template/catalog/product/view.phtml This the path which am using for product view. I am totally new to magento so please let me know where i create that file and folder because in rwd there is no such file named locale – Simmi Aug 05 '15 at 11:40