Jump to content

how to edit BlockCMS footer?


Recommended Posts

Hi all,

 

i am new to ps.. there are some questions that i am confused over CMS...

 

I am using v1.4.4 right now.. I wish to edit my footer links such that it shows

  • About Us
  • Policies
  • Terms & Conditions
  • FAQ
  • Contact Us

 

However as i look at the code, im not sure how am i supposed to edit it as it seems that different items has different codings..

 

The code in my blockcms.tpl is as follows:

<!-- MODULE Block footer -->
<center>
<ul class="block_various_links" id="block_various_links_footer">
 {if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop.php')}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if}
 <li class="{if $PS_CATALOG_MODE}first_{/if}item"><a href="{$link->getPageLink('new-products.php')}" title="{l s='New products' mod='blockcms'}">{l s='New products' mod='blockcms'}</a></li>
 {if !$PS_CATALOG_MODE}<li class="item"><a href="{$link->getPageLink('best-sales.php')}" title="{l s='Top sellers' mod='blockcms'}">{l s='Top sellers' mod='blockcms'}</a></li>{/if}
 {if $display_stores_footer}<li class="item"><a href="{$link->getPageLink('stores.php')}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}</a></li>{/if}
 <li class="item"><a href="{$link->getPageLink('contact-form.php', true)}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a></li>
 <li class="item"><a href="{$link->getPageLink('faqs.php', true)}" title="{l s='FAQs' mod='blockcms'}">{l s='FAQs' mod='blockcms'}</a></li>
 {foreach from=$cmslinks item=cmslink}
  {if $cmslink.meta_title != ''}
   <li class="item"><a href="{$cmslink.link|addslashes}" title="{$cmslink.meta_title|escape:'htmlall':'UTF-8'}">{$cmslink.meta_title|escape:'htmlall':'UTF-8'}</a></li>
  {/if}
 {/foreach}
</ul>
</center>

 

How should i include "Polices" in the code?? Do i need to create a page "Policies" in the CMS block first? Modules > CMS > Configure.. but how i link it in the blockcms.tpl?? i dont call it policies.php right??

 

i am a bit a confused of what CMS does actually...

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...