hrvoje29 Posted February 17, 2016 Share Posted February 17, 2016 Hi how to add extra space on ordertemplate on this palce tnx 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted February 17, 2016 Share Posted February 17, 2016 it will be better if you use separator like "/" or "-" instead of space, anyway to add multiple spaces you need to combine both of normal space " " and " " example: <option>4096 40.00KN</option> 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted February 17, 2016 Share Posted February 17, 2016 sentq - isn't that a configurable option dropdown? if so, he'll need to do a Smarty replace in the template, won't he? e.g change the code below in standard_cart/configureproduct.tpl from... {foreach key=num2 item=options from=$configoption.options} <option value="{$options.id}"{if $configoption.selectedvalue eq $options.id} selected="selected"{/if}> {$options.name} </option> {/foreach} to... {foreach key=num2 item=options from=$configoption.options} <option value="{$options.id}"{if $configoption.selectedvalue eq $options.id} selected="selected"{/if}> {$options.name|replace:' ':' '} </option> {/foreach} this would replace a single space with a double in all the configurable option dropdowns - if you only need to add a space to this one option, you could use an {if} statement to identify it. 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted February 17, 2016 Share Posted February 17, 2016 sentq - isn't that a configurable option dropdown? if so, he'll need to do a Smarty replace in the template, won't he? or he can add it to the option value from admin area! you know that we can accomplish things in multiple ways 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted February 17, 2016 Share Posted February 17, 2016 lol - never thought of that... yes, if it works, that's a better solution. 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.