JordanESSystems Posted April 16, 2015 Share Posted April 16, 2015 (edited) Hi, Does anyone know how to remove the highlighted lines of code from this page (See Attached). Website is: houseofmooshki.essystems.co.uk Prestashop version 1.6.0.9 Edited April 16, 2015 by JordanESSystems (see edit history) Link to comment Share on other sites More sharing options...
cristic Posted April 16, 2015 Share Posted April 16, 2015 I am not sure what payment option is used, but check inside 'payment_execution.tpl' either under bankwire or cheque modules. Link to comment Share on other sites More sharing options...
JordanESSystems Posted April 16, 2015 Author Share Posted April 16, 2015 Hi cristic, I'm using Bankwire but modified it so essentially the customer can place an order and we will invoice them later. Following your advice I removed the following from payment_execution.tpl and it seems to have done the trick: <p> - {if $currencies|@count > 1} {l s='We allow several currencies to be sent via bank wire.' mod='bankwire'} <div class="form-group"> <label>{l s='Choose one of the following:' mod='bankwire'}</label> <select id="currency_payement" class="form-control" name="currency_payement"> {foreach from=$currencies item=currency} <option value="{$currency.id_currency}" {if $currency.id_currency == $cust_currency}selected="selected"{/if}> {$currency.name} </option> {/foreach} </select> </div> {else} {l s='We allow the following currency to be sent via bank wire:' mod='bankwire'} <b>{$currencies.0.name}</b> <input type="hidden" name="currency_payement" value="{$currencies.0.id_currency}" /> {/if} </p> Many Thanks Link to comment Share on other sites More sharing options...
cristic Posted April 16, 2015 Share Posted April 16, 2015 Great. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now