Edit Checkout Completed

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
Anyone know how I might be able to edit my checkout completed page to include an additional line of text? I'm using the nopcommerce DefaultClean theme.

Thanks!
7 years ago
JoeyAK wrote:
Anyone know how I might be able to edit my checkout completed page to include an additional line of text? I'm using the nopcommerce DefaultClean theme.

Thanks!



You can edit Complete.cshtml and add your text in html content.

..\Presentation\Nop.Web\Views\Checkout\Completed.cshtml
7 years ago
ajaysolanki wrote:
Anyone know how I might be able to edit my checkout completed page to include an additional line of text? I'm using the nopcommerce DefaultClean theme.

Thanks!


You can edit Complete.cshtml and add your text in html content.

..\Presentation\Nop.Web\Views\Checkout\Completed.cshtml


You can also have localized message.

For that you need to add your custom message in String Resources from admin panel.
e.g. I've added custom message with

Resource name  : checkout.yourcustommessage
Value           : Your custom string message.

Now you can use @T("checkout.yourcustommessage") in .cshtml and it will render string from localized resource based on current language selected.
7 years ago
ajaysolanki wrote:
Anyone know how I might be able to edit my checkout completed page to include an additional line of text? I'm using the nopcommerce DefaultClean theme.

Thanks!


You can edit Complete.cshtml and add your text in html content.

..\Presentation\Nop.Web\Views\Checkout\Completed.cshtml

You can also have localized message.

For that you need to add your custom message in String Resources from admin panel.
e.g. I've added custom message with

Resource name  : checkout.yourcustommessage
Value           : Your custom string message.

Now you can use @T("checkout.yourcustommessage") in .cshtml and it will render string from localized resource based on current language selected.


Excellent. This sounds like the smarter option. I basically want to add the message "Your transaction will appear on your bill as..." I'll have to parse through this bit by bit since my coding knowledge is limited.
7 years ago
Where is "String Resources" in admin panel?

EDIT: Configuration > Languages > Edit language > String resources.
7 years ago
Done! That was easy enough, even for me. Thanks for the help.
7 years ago
Would this same location be appropriate for pasting my Google AdWords conversion tracking script?

<!-- Google Code for Checkout Conversions Conversion Page -->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id...

...</div>
</noscript>
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.