hello
Can someone explain to me where i should go to edit the Information page....the page which included....
Shipping & Returns
Privacy Notice
Conditions of Use
Contact Us
Where i suppose to go to place details in those....
Thanks
>:(
In webapps/konakart/WEB-INF/jsp/InformationTile.jsp you find the links:
<html:link page="/ShippingAndReturns.do"><bean:message key="information.tile.shippingandreturns"/></html:link><br>
<html:link page="/PrivacyNotice.do"><bean:message key="information.tile.privacynotice"/></html:link><br>
<html:link page="/ConditionsOfUse.do"><bean:message key="information.tile.conditionsofuse"/></html:link><br>
<html:link page="/ContactUs.do"><bean:message key="information.tile.contactus"/></html:link>
If you go to the struts-config.xml file you will find this action definition:
<action path="/ShippingAndReturns" type="com.konakart.actions.ShippingAndReturnsAction">
<forward name="ShippingAndReturns" path="/CatalogShippingAndReturnsPage.do"/>
</action>
and:
<action path="/CatalogShippingAndReturnsPage" forward="catalog.shippingandreturns.page"/>
So look for jsp/CatalogShippingAndReturnsBody.jsp is the page you are looking for. Edit body-content-div.
You will need to also edit CatalogPrivacyNoticeBody.jsp, CatalogConditionsOfUseBody.jsp and CatalogContactUsBody.jsp.