"Widget IDS should be Unique?"
Some time you have gotten such message during editing in template code.
We were unable to save your template.
Please correct the error below, and submit your template again.
More than one widget was found with id: HTML1. Widget IDs should be unique.
Or some time like below…
We were unable to save your template.
Please correct the error below, and submit your template again.
More than one widget was found with id: Feed1. Widget IDs should be unique.
<div id=’sidebar-wrapper’>
<b:section class=’sidebar’ id=’upsidebar’ preferred=’yes’>
<b:widget id=’HTML1‘ locked=’false’ title=” type=’HTML’/>
<b:widget id=’HTML2′ locked=’false’ title=” type=’HTML’/>
</b:section>
<b:section class=’sidebar’ id=’sidebar1′ preferred=’yes’>
<b:widget id=’HTML3′ locked=’false’ title=’My website’ type=’HTML’/>
<b:widget id=”HTML1‘ locked=’false’ title=’Free Software’ type=’HTML’/>
<b:widget id=’BlogArchive1′ locked=’false’ title=’Blog Tutorial’ type=’Blog’/>
<b:widget id=’HTML4′ locked=’false’ title=’nothing’ type=’HTML’/>
</b:section>
At the example above seen two widget codes with the same ID, that is HTML1 (attention the red letter):
<b:widget id=’HTML1‘ locked=’false’ title=” type=’HTML’/>
<b:widget id=’HTML1‘ locked=’false’ title=’Free Download’ type=’HTML’/>
You just change one of widget ID with different number, example : HTML1 changed with HTML15, for example : Upper Code will look like this one..
<div id=’sidebar-wrapper’>
<b:section class=’sidebar’ id=’upsidebar’ preferred=’yes’>
<b:widget id=’HTML1‘ locked=’false’ title=” type=’HTML’/>
<b:widget id=’HTML2′ locked=’false’ title=” type=’HTML’/>
</b:section>
<b:section class=’sidebar’ id=’sidebar1′ preferred=’yes’>
<b:widget id=’HTML5′ locked=’false’ title=’My website’ type=’HTML’/>
<b:widget id=”HTML15‘ locked=’false’ title=’Free Software’ type=’HTML’/>
<b:widget id=’BlogArchive1′ locked=’false’ title=’Blog Tutorial’ type=’Blog’/>
<b:widget id=’HTML6′ locked=’false’ title=’nothing’ type=’HTML’/>
</b:section>
Then Click Save template.
