Add default value to City field in Billing and Shipping The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Create a Store Config value, its not saved and unable to retrieve the value“State” field in checkout billing and shipping forms not displayingChanging City in Shipping to Drop Down optionsgrab fields from billing checkoutpageHow to hide or remove state/province field from billing pageCannot remove telephone and region/province from billing information on checkoutCity value validation fails in onepage checkout only“Phone” is a required value on Guest CheckoutOnepage Checkout Variable ErrorAdd Customer Note (comments) on billing Address and Save it

Can I visit the Trinity College (Cambridge) library and see some of their rare books

"is" operation returns false with ndarray.data attribute, even though two array objects have same id

For what reasons would an animal species NOT cross a *horizontal* land bridge?

Drawing vertical/oblique lines in Metrical tree (tikz-qtree, tipa)

My body leaves; my core can stay

Button changing its text & action. Good or terrible?

Huge performance difference of the command find with and without using %M option to show permissions

How to type a long/em dash `—`

Presidential Pardon

ELI5: Why do they say that Israel would have been the fourth country to land a spacecraft on the Moon and why do they call it low cost?

Why are PDP-7-style microprogrammed instructions out of vogue?

Homework question about an engine pulling a train

Word to describe a time interval

Why did Peik Lin say, "I'm not an animal"?

"... to apply for a visa" or "... and applied for a visa"?

What is the role of 'For' here?

Would an alien lifeform be able to achieve space travel if lacking in vision?

Using dividends to reduce short term capital gains?

Intergalactic human space ship encounters another ship, character gets shunted off beyond known universe, reality starts collapsing

Sort list of array linked objects by keys and values

Is there a way to generate uniformly distributed points on a sphere from a fixed amount of random real numbers per point?

Can we generate random numbers using irrational numbers like π and e?

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?

How to handle characters who are more educated than the author?



Add default value to City field in Billing and Shipping



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Create a Store Config value, its not saved and unable to retrieve the value“State” field in checkout billing and shipping forms not displayingChanging City in Shipping to Drop Down optionsgrab fields from billing checkoutpageHow to hide or remove state/province field from billing pageCannot remove telephone and region/province from billing information on checkoutCity value validation fails in onepage checkout only“Phone” is a required value on Guest CheckoutOnepage Checkout Variable ErrorAdd Customer Note (comments) on billing Address and Save it



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Just like there is a default value for 'State/Province' field which is: 'Please select region, state or province' I need to add a default value to City field in billing and shipping steps in checkout.
In my case the City is drop-down list getting its list of cities from database.



In app>design>frontend>base>default>template>checkout>onepage>billing.phtml, the city field code is:



<div class="field">
<label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?>
</label>

<div class="input-box">
<input type="text" title="<?php echo $this->__('City') ?>"
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"/>
</div>
</div>









share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • I don't see any dropdown (ex: <select>) in your code.

    – Adarsh Khatri
    Aug 21 '15 at 6:43

















1















Just like there is a default value for 'State/Province' field which is: 'Please select region, state or province' I need to add a default value to City field in billing and shipping steps in checkout.
In my case the City is drop-down list getting its list of cities from database.



In app>design>frontend>base>default>template>checkout>onepage>billing.phtml, the city field code is:



<div class="field">
<label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?>
</label>

<div class="input-box">
<input type="text" title="<?php echo $this->__('City') ?>"
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"/>
</div>
</div>









share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • I don't see any dropdown (ex: <select>) in your code.

    – Adarsh Khatri
    Aug 21 '15 at 6:43













1












1








1








Just like there is a default value for 'State/Province' field which is: 'Please select region, state or province' I need to add a default value to City field in billing and shipping steps in checkout.
In my case the City is drop-down list getting its list of cities from database.



In app>design>frontend>base>default>template>checkout>onepage>billing.phtml, the city field code is:



<div class="field">
<label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?>
</label>

<div class="input-box">
<input type="text" title="<?php echo $this->__('City') ?>"
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"/>
</div>
</div>









share|improve this question
















Just like there is a default value for 'State/Province' field which is: 'Please select region, state or province' I need to add a default value to City field in billing and shipping steps in checkout.
In my case the City is drop-down list getting its list of cities from database.



In app>design>frontend>base>default>template>checkout>onepage>billing.phtml, the city field code is:



<div class="field">
<label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?>
</label>

<div class="input-box">
<input type="text" title="<?php echo $this->__('City') ?>"
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"/>
</div>
</div>






magento-1.9 drop-downs default-values






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 10 '17 at 10:32









Teja Bhagavan Kollepara

2,99341949




2,99341949










asked Aug 21 '15 at 6:24









Tallal HassanTallal Hassan

158214




158214





bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • I don't see any dropdown (ex: <select>) in your code.

    – Adarsh Khatri
    Aug 21 '15 at 6:43

















  • I don't see any dropdown (ex: <select>) in your code.

    – Adarsh Khatri
    Aug 21 '15 at 6:43
















I don't see any dropdown (ex: <select>) in your code.

– Adarsh Khatri
Aug 21 '15 at 6:43





I don't see any dropdown (ex: <select>) in your code.

– Adarsh Khatri
Aug 21 '15 at 6:43










2 Answers
2






active

oldest

votes


















0














If I understand you, you want to force your users to have default value on city section then change this:



value="<?php echo "your city name"; //$this->escapeHtml($this->getAddress()->getCity()) ?>" 


This will make default city on city field.



PS



By default Magento pools city data for registered customer from database using $this->escapeHtml($this->getAddress()->getCity()) function.



So when you change this, it will never pool that data.






share|improve this answer























  • Let me check this.Please note that i am using an extension for drop-down city list so I will edit the extension's billing.phtml and shipping.phtml files.Does that too would pose issue to pool data for registered customers if i follow your answer?

    – Tallal Hassan
    Aug 21 '15 at 6:41












  • Yes, every extension I believe are written magento way.

    – Adarsh Khatri
    Aug 21 '15 at 6:42











  • Your answer works.But there is already an empty space at the top of drop-down city list i want that space be taken up by default value.If possible please take a few seconds to check my site www.apollo-sports.com.pk/magento select any product and go to check out to see what there in billing.please?First select country Romania and then the first State and then cities will appear

    – Tallal Hassan
    Aug 21 '15 at 6:47



















0














If like the state/province you just want to show what is effectively help text, I suggest you add a placeholder attribute to the input box. So something like...



<<input type="text" title="<?php echo $this->__('City') ?>" 
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"
placeholder="<?php echo $this->__('Please enter city'); ?>"/>


Then if they empty the value out the placeholder text will appear again.



Regards,
Andy






share|improve this answer























  • Hi I tried your way but the placeholder text disappears upon selecting any country and / or State :(

    – Tallal Hassan
    Aug 21 '15 at 6:58











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f79428%2fadd-default-value-to-city-field-in-billing-and-shipping%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














If I understand you, you want to force your users to have default value on city section then change this:



value="<?php echo "your city name"; //$this->escapeHtml($this->getAddress()->getCity()) ?>" 


This will make default city on city field.



PS



By default Magento pools city data for registered customer from database using $this->escapeHtml($this->getAddress()->getCity()) function.



So when you change this, it will never pool that data.






share|improve this answer























  • Let me check this.Please note that i am using an extension for drop-down city list so I will edit the extension's billing.phtml and shipping.phtml files.Does that too would pose issue to pool data for registered customers if i follow your answer?

    – Tallal Hassan
    Aug 21 '15 at 6:41












  • Yes, every extension I believe are written magento way.

    – Adarsh Khatri
    Aug 21 '15 at 6:42











  • Your answer works.But there is already an empty space at the top of drop-down city list i want that space be taken up by default value.If possible please take a few seconds to check my site www.apollo-sports.com.pk/magento select any product and go to check out to see what there in billing.please?First select country Romania and then the first State and then cities will appear

    – Tallal Hassan
    Aug 21 '15 at 6:47
















0














If I understand you, you want to force your users to have default value on city section then change this:



value="<?php echo "your city name"; //$this->escapeHtml($this->getAddress()->getCity()) ?>" 


This will make default city on city field.



PS



By default Magento pools city data for registered customer from database using $this->escapeHtml($this->getAddress()->getCity()) function.



So when you change this, it will never pool that data.






share|improve this answer























  • Let me check this.Please note that i am using an extension for drop-down city list so I will edit the extension's billing.phtml and shipping.phtml files.Does that too would pose issue to pool data for registered customers if i follow your answer?

    – Tallal Hassan
    Aug 21 '15 at 6:41












  • Yes, every extension I believe are written magento way.

    – Adarsh Khatri
    Aug 21 '15 at 6:42











  • Your answer works.But there is already an empty space at the top of drop-down city list i want that space be taken up by default value.If possible please take a few seconds to check my site www.apollo-sports.com.pk/magento select any product and go to check out to see what there in billing.please?First select country Romania and then the first State and then cities will appear

    – Tallal Hassan
    Aug 21 '15 at 6:47














0












0








0







If I understand you, you want to force your users to have default value on city section then change this:



value="<?php echo "your city name"; //$this->escapeHtml($this->getAddress()->getCity()) ?>" 


This will make default city on city field.



PS



By default Magento pools city data for registered customer from database using $this->escapeHtml($this->getAddress()->getCity()) function.



So when you change this, it will never pool that data.






share|improve this answer













If I understand you, you want to force your users to have default value on city section then change this:



value="<?php echo "your city name"; //$this->escapeHtml($this->getAddress()->getCity()) ?>" 


This will make default city on city field.



PS



By default Magento pools city data for registered customer from database using $this->escapeHtml($this->getAddress()->getCity()) function.



So when you change this, it will never pool that data.







share|improve this answer












share|improve this answer



share|improve this answer










answered Aug 21 '15 at 6:36









Adarsh KhatriAdarsh Khatri

6,80511644




6,80511644












  • Let me check this.Please note that i am using an extension for drop-down city list so I will edit the extension's billing.phtml and shipping.phtml files.Does that too would pose issue to pool data for registered customers if i follow your answer?

    – Tallal Hassan
    Aug 21 '15 at 6:41












  • Yes, every extension I believe are written magento way.

    – Adarsh Khatri
    Aug 21 '15 at 6:42











  • Your answer works.But there is already an empty space at the top of drop-down city list i want that space be taken up by default value.If possible please take a few seconds to check my site www.apollo-sports.com.pk/magento select any product and go to check out to see what there in billing.please?First select country Romania and then the first State and then cities will appear

    – Tallal Hassan
    Aug 21 '15 at 6:47


















  • Let me check this.Please note that i am using an extension for drop-down city list so I will edit the extension's billing.phtml and shipping.phtml files.Does that too would pose issue to pool data for registered customers if i follow your answer?

    – Tallal Hassan
    Aug 21 '15 at 6:41












  • Yes, every extension I believe are written magento way.

    – Adarsh Khatri
    Aug 21 '15 at 6:42











  • Your answer works.But there is already an empty space at the top of drop-down city list i want that space be taken up by default value.If possible please take a few seconds to check my site www.apollo-sports.com.pk/magento select any product and go to check out to see what there in billing.please?First select country Romania and then the first State and then cities will appear

    – Tallal Hassan
    Aug 21 '15 at 6:47

















Let me check this.Please note that i am using an extension for drop-down city list so I will edit the extension's billing.phtml and shipping.phtml files.Does that too would pose issue to pool data for registered customers if i follow your answer?

– Tallal Hassan
Aug 21 '15 at 6:41






Let me check this.Please note that i am using an extension for drop-down city list so I will edit the extension's billing.phtml and shipping.phtml files.Does that too would pose issue to pool data for registered customers if i follow your answer?

– Tallal Hassan
Aug 21 '15 at 6:41














Yes, every extension I believe are written magento way.

– Adarsh Khatri
Aug 21 '15 at 6:42





Yes, every extension I believe are written magento way.

– Adarsh Khatri
Aug 21 '15 at 6:42













Your answer works.But there is already an empty space at the top of drop-down city list i want that space be taken up by default value.If possible please take a few seconds to check my site www.apollo-sports.com.pk/magento select any product and go to check out to see what there in billing.please?First select country Romania and then the first State and then cities will appear

– Tallal Hassan
Aug 21 '15 at 6:47






Your answer works.But there is already an empty space at the top of drop-down city list i want that space be taken up by default value.If possible please take a few seconds to check my site www.apollo-sports.com.pk/magento select any product and go to check out to see what there in billing.please?First select country Romania and then the first State and then cities will appear

– Tallal Hassan
Aug 21 '15 at 6:47














0














If like the state/province you just want to show what is effectively help text, I suggest you add a placeholder attribute to the input box. So something like...



<<input type="text" title="<?php echo $this->__('City') ?>" 
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"
placeholder="<?php echo $this->__('Please enter city'); ?>"/>


Then if they empty the value out the placeholder text will appear again.



Regards,
Andy






share|improve this answer























  • Hi I tried your way but the placeholder text disappears upon selecting any country and / or State :(

    – Tallal Hassan
    Aug 21 '15 at 6:58















0














If like the state/province you just want to show what is effectively help text, I suggest you add a placeholder attribute to the input box. So something like...



<<input type="text" title="<?php echo $this->__('City') ?>" 
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"
placeholder="<?php echo $this->__('Please enter city'); ?>"/>


Then if they empty the value out the placeholder text will appear again.



Regards,
Andy






share|improve this answer























  • Hi I tried your way but the placeholder text disappears upon selecting any country and / or State :(

    – Tallal Hassan
    Aug 21 '15 at 6:58













0












0








0







If like the state/province you just want to show what is effectively help text, I suggest you add a placeholder attribute to the input box. So something like...



<<input type="text" title="<?php echo $this->__('City') ?>" 
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"
placeholder="<?php echo $this->__('Please enter city'); ?>"/>


Then if they empty the value out the placeholder text will appear again.



Regards,
Andy






share|improve this answer













If like the state/province you just want to show what is effectively help text, I suggest you add a placeholder attribute to the input box. So something like...



<<input type="text" title="<?php echo $this->__('City') ?>" 
name="billing[city]"
value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
id="billing:city"
placeholder="<?php echo $this->__('Please enter city'); ?>"/>


Then if they empty the value out the placeholder text will appear again.



Regards,
Andy







share|improve this answer












share|improve this answer



share|improve this answer










answered Aug 21 '15 at 6:45









SmartieSmartie

2,8201727




2,8201727












  • Hi I tried your way but the placeholder text disappears upon selecting any country and / or State :(

    – Tallal Hassan
    Aug 21 '15 at 6:58

















  • Hi I tried your way but the placeholder text disappears upon selecting any country and / or State :(

    – Tallal Hassan
    Aug 21 '15 at 6:58
















Hi I tried your way but the placeholder text disappears upon selecting any country and / or State :(

– Tallal Hassan
Aug 21 '15 at 6:58





Hi I tried your way but the placeholder text disappears upon selecting any country and / or State :(

– Tallal Hassan
Aug 21 '15 at 6:58

















draft saved

draft discarded
















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f79428%2fadd-default-value-to-city-field-in-billing-and-shipping%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form