Jump to content

Display to consumer? set "yes" to default


Recommended Posts

I do not see "Display to consumer" in Order tab. It should be fine if you can post your screen shot here.

 

Orders - Choose any order - NEW message -

Click here to add a comment or send a message to the customer

 

Click New Message

Link to comment
Share on other sites

  • 2 months later...

I am also looking for information on how to change the "Display to consumer?" to been default "yes" checked, if anyone knows how to do it I would be grateful for help

 

 

I found a solution

In file AdminOrders.php from catalog /yours admin catalog/tabs

You need do find

<input type="radio" name="visibility" id="visibility" value="0" /> '.$this->l('Yes').'
<input type="radio" name="visibility" value="1" checked="checked" /> '.$this->l('No').'

and replace to

<input type="radio" name="visibility" id="visibility"  checked="checked" /> '.$this->l('Yes').'
<input type="radio" name="visibility" value="0" /> '.$this->l('No').'

Edited by mati06 (see edit history)
Link to comment
Share on other sites

  • 4 weeks later...

This didnt work for me but I have changed it to work.

 

In AdminOrders.php - catalog / admin area /tabs/

 

Find this

 

<input type="radio" name="visibility" id="visibility" value="0" /> '.$this->l('Yes').'

<input type="radio" name="visibility" value="1" checked="checked" /> '.$this->l('No').'

 

And replace with this

 

<input type="radio" name="visibility" id="visibility" value="0" checked="checked" /> '.$this->l('Yes').'

<input type="radio" name="visibility" value="1" /> '.$this->l('No').'

 

Hopefully this works for you as well

Link to comment
Share on other sites

  • 5 years later...
  • 1 month later...
  • 4 years later...

Find a solution for version 1.6.1.13

In /themes/default/template/controllers/orders/helpers/view/view.tpl

aprox line 663

I´ve changed

                                        <input type="radio" name="visibility" id="visibility_on" value="0" />
                                        <label for="visibility_on">
                                            {l s='Yes'}
                                        </label>
                                        <input type="radio" name="visibility" id="visibility_off" value="1" checked="checked" />

 

for this

                                        <input type="radio" name="visibility" id="visibility_on" value="0" checked="checked" />
                                        <label for="visibility_on">
                                            {l s='Yes'}
                                        </label>
                                        <input type="radio" name="visibility" id="visibility_off" value="1" />

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...