dalex Posted May 18, 2017 Share Posted May 18, 2017 How do I remove (Total Due Today) in the shopping cart at checkout? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 18, 2017 Share Posted May 18, 2017 How do I remove (Total Due Today) in the shopping cart at checkout? if you mean you just want to remove the text, then one option would be to use Language Overrides - don't edit the original language file(s), follow the instructions to create override file(s) for each language you want to change... $_LANG['ordertotalduetoday'] = "Total Due Today"; should be changed to the following in your override file(s)... $_LANG['ordertotalduetoday'] = ""; 0 Quote Link to comment Share on other sites More sharing options...
dalex Posted May 18, 2017 Author Share Posted May 18, 2017 It's not working, here's what I did: Inside Lang folder, I created a folder named overrides. Inside overrides folder, I created a file called enlgish.php Inside the english.php file I added: $_LANG['ordertotalduetoday'] = ""; 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 18, 2017 Share Posted May 18, 2017 it sounds like you missed off the <?PHP at the beginning of the file code. 0 Quote Link to comment Share on other sites More sharing options...
dalex Posted May 18, 2017 Author Share Posted May 18, 2017 Thanks, that worked! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.