hill37588 Posted October 17, 2013 Share Posted October 17, 2013 What file do I edit to modify the text on this page? > Order confirmation Order confirmation Your is Order Complete! Thank you for Your OrderYour order on xyzcompnay is now complete. Your Order Number Is:31 Your order will be processed and shipped as soon as possible Link to comment Share on other sites More sharing options...
darkfalco Posted October 17, 2013 Share Posted October 17, 2013 Hello I found theres some statements you might be able to change on this file:...shop/themes/default/order-confirmation.tplExactly which information are you trying to change? Link to comment Share on other sites More sharing options...
hill37588 Posted October 17, 2013 Author Share Posted October 17, 2013 I want to correct the grammar and remove the order number. Order confirmation Your is Order Complete! Thank you for Your Order Link to comment Share on other sites More sharing options...
darkfalco Posted October 17, 2013 Share Posted October 17, 2013 So in this case we have: {if $is_guest} <p>{l s='Your order ID is:'} <span class="bold">{$id_order_formatted}</span> . {l s='Your order ID has been sent via email.'}</p> <a href="{$link->getPageLink('guest-tracking', true, NULL, "id_order={$reference_order}&email={$email}")|escape:'html'}" title="{l s='Follow my order'}"><img src="{$img_dir}icon/order.gif" alt="{l s='Follow my order'}" class="icon" /></a> <a href="{$link->getPageLink('guest-tracking', true, NULL, "id_order={$reference_order}&email={$email}")|escape:'html'}" title="{l s='Follow my order'}">{l s='Follow my order'}</a> {else} <a href="{$link->getPageLink('history', true)|escape:'html'}" title="{l s='Back to orders'}"><img src="{$img_dir}icon/order.gif" alt="{l s='Back to orders'}" class="icon" /></a> <a href="{$link->getPageLink('history', true)|escape:'html'}" title="{l s='Back to orders'}">{l s='Back to orders'}</a> {/if} You can edit the grammar there.Also, you can delete the order number, just delete <span class="bold">{$id_order_formatted}</span>Save a copy of the file, just in case this doesn't works Link to comment Share on other sites More sharing options...
hill37588 Posted October 17, 2013 Author Share Posted October 17, 2013 Is it possible to swap the order ID with Cart ID - I guess would have to change: <span class="bold">{$id_order_formatted}</span> to ? Link to comment Share on other sites More sharing options...
darkfalco Posted October 17, 2013 Share Posted October 17, 2013 Hello, well basically, you need to delete/modify the part where it states: <p>{l s='Your order ID is:'} <span class="bold">{$id_order_formatted}</span> . {l s='Your order ID has been sent via email.'}</p> For: <p>{l s='Your Cart ID is:'} <span class="bold">{$id_order_formatted}</span> . {l s='Your Cart ID has been sent via email.'}</p> Try it and tell me if that helps you out. Link to comment Share on other sites More sharing options...
hill37588 Posted October 18, 2013 Author Share Posted October 18, 2013 Just to clarify, I need to change the actual value to the Cart ID value. Where does the value come from and what do I change it to? I'm using the [modrefchange module] which allows me use the Cart ID as the order number. If I can figure out where the Cart ID value is coming from, I can just change the source. --- I did not see the text that is displayed at the top of the order confirmation page - the text that is displayed above the order number. Is there another file that needs to be edited? Please read this line " Order confirmation Your is Order Complete! Thank you for Your Order " I need to change it to: " Your Order is Complete! Thank you for Your Order " Link to comment Share on other sites More sharing options...
darkfalco Posted October 18, 2013 Share Posted October 18, 2013 In that case where is your [modrefchange module] you might find some ".tpl" 's inside, you need to open them and check the attribute name for the shopping cart, lets say$ID_cartAnd replace the script on the order-confirmation.tpl for that ID, perhaps it works...Btw, when you're using an specific module please let us know before, and try to be more explicit on what you need, this will save time to all Link to comment Share on other sites More sharing options...
Recommended Posts