Changing text for check payment method on magento check out page
I'm new to magento so please remember when responding. What I want to do is change the text on the magento check option. I had the ability to change the title to "wire transfer" but would like to change the text that says "make check payable to" and "send check to".
Please let me know if this is possible and where I would find this file. Thank you for your help!
magento-1.9 magento-community php-5.4
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm new to magento so please remember when responding. What I want to do is change the text on the magento check option. I had the ability to change the title to "wire transfer" but would like to change the text that says "make check payable to" and "send check to".
Please let me know if this is possible and where I would find this file. Thank you for your help!
magento-1.9 magento-community php-5.4
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm new to magento so please remember when responding. What I want to do is change the text on the magento check option. I had the ability to change the title to "wire transfer" but would like to change the text that says "make check payable to" and "send check to".
Please let me know if this is possible and where I would find this file. Thank you for your help!
magento-1.9 magento-community php-5.4
I'm new to magento so please remember when responding. What I want to do is change the text on the magento check option. I had the ability to change the title to "wire transfer" but would like to change the text that says "make check payable to" and "send check to".
Please let me know if this is possible and where I would find this file. Thank you for your help!
magento-1.9 magento-community php-5.4
magento-1.9 magento-community php-5.4
asked May 5 '15 at 14:39
ISOFITISOFIT
354
354
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can change the text for those by going to your_web_root/app/design/frontend/base/default/template/payment/form/checkmo.phtml
The text that gets displayed on the frontend can be found here.
I would copy this file to your theme and then make the necessary text changes.
After you make the change clear your cache if it is enabled.
add a comment |
You can do that by enabling the translation mode in magento.
Connect to the admin
Go in System-> Configuration ->Advanced -> developper -> Translated Inline -> Front End switch
to yes
You should see on the front end some red box around every texts, click on the one you need to translate, change it and then re-stwitch to off the translated inline mod when you are done.
Don't forget to disable the cache before doing that.
It made the change in the magento back end, does not apply to front end.
– ISOFIT
May 5 '15 at 15:06
When you change the translation on the front-end it only changed the backend translations ?
– Anselme
May 5 '15 at 15:16
Yes only in magento not on front end. This is a new install with only template and 1 shipping table extension.
– ISOFIT
May 5 '15 at 15:57
to go further and to see which files is concerned you would need to enable to template hint path file it will show you which files path are concerned. More info help.sweettoothrewards.com/article/… turnit on and then it should indicates you the path of the file you need to investigate.
– Anselme
May 5 '15 at 16:01
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f65772%2fchanging-text-for-check-payment-method-on-magento-check-out-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can change the text for those by going to your_web_root/app/design/frontend/base/default/template/payment/form/checkmo.phtml
The text that gets displayed on the frontend can be found here.
I would copy this file to your theme and then make the necessary text changes.
After you make the change clear your cache if it is enabled.
add a comment |
You can change the text for those by going to your_web_root/app/design/frontend/base/default/template/payment/form/checkmo.phtml
The text that gets displayed on the frontend can be found here.
I would copy this file to your theme and then make the necessary text changes.
After you make the change clear your cache if it is enabled.
add a comment |
You can change the text for those by going to your_web_root/app/design/frontend/base/default/template/payment/form/checkmo.phtml
The text that gets displayed on the frontend can be found here.
I would copy this file to your theme and then make the necessary text changes.
After you make the change clear your cache if it is enabled.
You can change the text for those by going to your_web_root/app/design/frontend/base/default/template/payment/form/checkmo.phtml
The text that gets displayed on the frontend can be found here.
I would copy this file to your theme and then make the necessary text changes.
After you make the change clear your cache if it is enabled.
answered Sep 25 '17 at 18:41
danmentzerdanmentzer
388110
388110
add a comment |
add a comment |
You can do that by enabling the translation mode in magento.
Connect to the admin
Go in System-> Configuration ->Advanced -> developper -> Translated Inline -> Front End switch
to yes
You should see on the front end some red box around every texts, click on the one you need to translate, change it and then re-stwitch to off the translated inline mod when you are done.
Don't forget to disable the cache before doing that.
It made the change in the magento back end, does not apply to front end.
– ISOFIT
May 5 '15 at 15:06
When you change the translation on the front-end it only changed the backend translations ?
– Anselme
May 5 '15 at 15:16
Yes only in magento not on front end. This is a new install with only template and 1 shipping table extension.
– ISOFIT
May 5 '15 at 15:57
to go further and to see which files is concerned you would need to enable to template hint path file it will show you which files path are concerned. More info help.sweettoothrewards.com/article/… turnit on and then it should indicates you the path of the file you need to investigate.
– Anselme
May 5 '15 at 16:01
add a comment |
You can do that by enabling the translation mode in magento.
Connect to the admin
Go in System-> Configuration ->Advanced -> developper -> Translated Inline -> Front End switch
to yes
You should see on the front end some red box around every texts, click on the one you need to translate, change it and then re-stwitch to off the translated inline mod when you are done.
Don't forget to disable the cache before doing that.
It made the change in the magento back end, does not apply to front end.
– ISOFIT
May 5 '15 at 15:06
When you change the translation on the front-end it only changed the backend translations ?
– Anselme
May 5 '15 at 15:16
Yes only in magento not on front end. This is a new install with only template and 1 shipping table extension.
– ISOFIT
May 5 '15 at 15:57
to go further and to see which files is concerned you would need to enable to template hint path file it will show you which files path are concerned. More info help.sweettoothrewards.com/article/… turnit on and then it should indicates you the path of the file you need to investigate.
– Anselme
May 5 '15 at 16:01
add a comment |
You can do that by enabling the translation mode in magento.
Connect to the admin
Go in System-> Configuration ->Advanced -> developper -> Translated Inline -> Front End switch
to yes
You should see on the front end some red box around every texts, click on the one you need to translate, change it and then re-stwitch to off the translated inline mod when you are done.
Don't forget to disable the cache before doing that.
You can do that by enabling the translation mode in magento.
Connect to the admin
Go in System-> Configuration ->Advanced -> developper -> Translated Inline -> Front End switch
to yes
You should see on the front end some red box around every texts, click on the one you need to translate, change it and then re-stwitch to off the translated inline mod when you are done.
Don't forget to disable the cache before doing that.
edited Dec 24 '18 at 5:11
Ashish Viradiya
562420
562420
answered May 5 '15 at 14:42
AnselmeAnselme
3617
3617
It made the change in the magento back end, does not apply to front end.
– ISOFIT
May 5 '15 at 15:06
When you change the translation on the front-end it only changed the backend translations ?
– Anselme
May 5 '15 at 15:16
Yes only in magento not on front end. This is a new install with only template and 1 shipping table extension.
– ISOFIT
May 5 '15 at 15:57
to go further and to see which files is concerned you would need to enable to template hint path file it will show you which files path are concerned. More info help.sweettoothrewards.com/article/… turnit on and then it should indicates you the path of the file you need to investigate.
– Anselme
May 5 '15 at 16:01
add a comment |
It made the change in the magento back end, does not apply to front end.
– ISOFIT
May 5 '15 at 15:06
When you change the translation on the front-end it only changed the backend translations ?
– Anselme
May 5 '15 at 15:16
Yes only in magento not on front end. This is a new install with only template and 1 shipping table extension.
– ISOFIT
May 5 '15 at 15:57
to go further and to see which files is concerned you would need to enable to template hint path file it will show you which files path are concerned. More info help.sweettoothrewards.com/article/… turnit on and then it should indicates you the path of the file you need to investigate.
– Anselme
May 5 '15 at 16:01
It made the change in the magento back end, does not apply to front end.
– ISOFIT
May 5 '15 at 15:06
It made the change in the magento back end, does not apply to front end.
– ISOFIT
May 5 '15 at 15:06
When you change the translation on the front-end it only changed the backend translations ?
– Anselme
May 5 '15 at 15:16
When you change the translation on the front-end it only changed the backend translations ?
– Anselme
May 5 '15 at 15:16
Yes only in magento not on front end. This is a new install with only template and 1 shipping table extension.
– ISOFIT
May 5 '15 at 15:57
Yes only in magento not on front end. This is a new install with only template and 1 shipping table extension.
– ISOFIT
May 5 '15 at 15:57
to go further and to see which files is concerned you would need to enable to template hint path file it will show you which files path are concerned. More info help.sweettoothrewards.com/article/… turnit on and then it should indicates you the path of the file you need to investigate.
– Anselme
May 5 '15 at 16:01
to go further and to see which files is concerned you would need to enable to template hint path file it will show you which files path are concerned. More info help.sweettoothrewards.com/article/… turnit on and then it should indicates you the path of the file you need to investigate.
– Anselme
May 5 '15 at 16:01
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f65772%2fchanging-text-for-check-payment-method-on-magento-check-out-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown