CutiePengu Posted November 29, 2014 Share Posted November 29, 2014 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 More sharing options...
shacker Posted December 1, 2014 Share Posted December 1, 2014 in preferences, seo and url you can edit the meta tags for each page and rewrite rules. also for products, you need to edit individual products Link to comment Share on other sites More sharing options...
CutiePengu Posted December 1, 2014 Author Share Posted December 1, 2014 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 More sharing options...
shacker Posted December 2, 2014 Share Posted December 2, 2014 in loalization, countries, edit the country and remove the birthday as request field Link to comment Share on other sites More sharing options...
CutiePengu Posted December 2, 2014 Author Share Posted December 2, 2014 I went in there and it doesn't have it listed in the list of requirements, but yet, when someone tried to test checkout/register, it had it on there. Link to comment Share on other sites More sharing options...
mickeyboy1 Posted December 2, 2014 Share Posted December 2, 2014 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 More sharing options...
CutiePengu Posted December 2, 2014 Author Share Posted December 2, 2014 (edited) 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 December 2, 2014 by CutiePengu (see edit history) Link to comment Share on other sites More sharing options...
mickeyboy1 Posted December 2, 2014 Share Posted December 2, 2014 Always best to just comment out code first. Then check you site runs as you intend to, then if all is well you can delete it but it wont hurt just being commented out 1 Link to comment Share on other sites More sharing options...
CutiePengu Posted December 2, 2014 Author Share Posted December 2, 2014 ok, tyvm for all your help. Link to comment Share on other sites More sharing options...
Recommended Posts