Jump to content

Working On SEO Markup


Recommended Posts

I'm trying to do some SEO markup on the site, but all I see when going to my Presta folder is a php file.  How do I edit this file, when there is NOTHING in there except the "notice of license" and the "disclaimer".  The help I was getting told me to add some missing data to the "html" file, but I don't see an html file.  Am I missing something here?  Am I doing something wrong?

 

SOMEONE PLEASE HELP

 

 

Link to comment
Share on other sites

Thank you.

 

Also, if you can answer this question, when someone signs up for my site, it says that birthday and other information is "required".  some people won't want to put that kind of information in the form.  how do i edit the form so that its NOT required?

Link to comment
Share on other sites

Try in themes/your-theme/authentication.tpl around line 450 you will find this code...

<div class="form-group">
				<label>{l s='Date of Birth'}</label>
				<div class="row">
					<div class="col-xs-4">
						<select id="days" name="days" class="form-control">
							<option value="">-</option>
							{foreach from=$days item=day}
								<option value="{$day}" {if ($sl_day == $day)} selected="selected"{/if}>{$day}  </option>
							{/foreach}
						</select>
						{*
							{l s='January'}
							{l s='February'}
							{l s='March'}
							{l s='April'}
							{l s='May'}
							{l s='June'}
							{l s='July'}
							{l s='August'}
							{l s='September'}
							{l s='October'}
							{l s='November'}
							{l s='December'}
						*}
					</div>
					<div class="col-xs-4">
						<select id="months" name="months" class="form-control">
							<option value="">-</option>
							{foreach from=$months key=k item=month}
								<option value="{$k}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month} </option>
							{/foreach}
						</select>
					</div>
					<div class="col-xs-4">
						<select id="years" name="years" class="form-control">
							<option value="">-</option>
							{foreach from=$years item=year}
								<option value="{$year}" {if ($sl_year == $year)} selected="selected"{/if}>{$year}  </option>
							{/foreach}
						</select>
					</div>
				</div>
			</div>

Just comment it out using <!-- before code and --> after it

Link to comment
Share on other sites

would it hurt to just delete that div?

 

nvm, I see that by doing that, it grays it out.  Thank you very much.

 

(if you could, could you look at my "sub category" post that I have, and see if you can help me there too please.  I have several other posts that haven't had any replies or any really good help that I could understand.)

Edited by CutiePengu (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...