arimer Posted May 17, 2012 Share Posted May 17, 2012 Hi, In the orders tab - Display to consumer? Yes No Where to change to the option "Yes" to be default? and turn off the pop up window? Thanks Link to comment Share on other sites More sharing options...
VNguyen Posted May 17, 2012 Share Posted May 17, 2012 Which version of PS you are using now? Link to comment Share on other sites More sharing options...
arimer Posted May 17, 2012 Author Share Posted May 17, 2012 Which version of PS you are using now? 1.4.7.0 thanks Link to comment Share on other sites More sharing options...
VNguyen Posted May 17, 2012 Share Posted May 17, 2012 I do not see "Display to consumer" in Order tab. It should be fine if you can post your screen shot here. Link to comment Share on other sites More sharing options...
arimer Posted May 17, 2012 Author Share Posted May 17, 2012 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 More sharing options...
mati06 Posted July 22, 2012 Share Posted July 22, 2012 (edited) 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 July 24, 2012 by mati06 (see edit history) Link to comment Share on other sites More sharing options...
olivehouse Posted August 15, 2012 Share Posted August 15, 2012 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 More sharing options...
TurkeyFish Posted December 14, 2017 Share Posted December 14, 2017 There is no such file in PS 1.6. Is there an updated method? Link to comment Share on other sites More sharing options...
TurkeyFish Posted January 16, 2018 Share Posted January 16, 2018 Anyone found an updated solution for this? Link to comment Share on other sites More sharing options...
motonet Posted December 6, 2022 Share Posted December 6, 2022 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 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