Change label text for Address 1 using scripts

Modified on Mon, Feb 5 at 5:14 PM

For Store/Site/MyAccount.aspx

Add in Bootstrap Custom Layout - Scripts tab

<script>
document.getElementById("spanAddress1").innerText="Your text";
</script>

---------------------------


For Store/Site/Checkout/ShippingManualAddress.aspx

Add in Bootstrap Custom Layout - Scripts tab 

   

<script>
$(function() {
$("#ctl00_cphBody_ShippingAddress1_Label5").text("Your text");
} );
</script>

---------------------------

For Store/Public/MyAccount.aspx


Add in Bootstrap Custom Layout - Public tab


<script>
document.getElementById("spanAddress1").innerText="Your text ";
         </script>

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article