I am encountering an issue with a wordpress plugin and I am attempting to conceal (or alternatively, replace which would be fantastic) the terms "DD", "MM" and "YYYY" in the provided code:
<div class="smFormInlineFormCont">
<div class="smInlineForm smInlineFormDate">
<span>
<label><input name="smFieldData[wpformfield5627][date][dd]" id="smform-field-yyyy2452"
value=""
class="smFieldDD smform-control smform-field-sizelarge "
type="number" date-type="date" min="1" max="31" /> DD</label></span>
<span><label><input name="smFieldData[wpformfield5627][date][mm]" id="smform-field-mm2452"
value=""
class="smFieldMM smform-control smform-field-sizelarge "
type="number" date-type="date" min="1" max="12" /> MM</label></span>
<span><label><input name="smFieldData[wpformfield5627][date][yyyy]" id="smform-field-yyyy2452"
value=""
class="smFieldDD smform-control smform-field-sizelarge "
type="number" date-type="date" min="1" max="9999" /> YYYY</label></span>
</div>
The issue is that I am creating a website in French so I would prefer to use JJ, MM, AAAA instead or remove entirely the letters causing inconvenience.
Thank you for your assistance :)