Jump to content

Removing sitemap and other links in Footer


Recommended Posts

Open yourtheme/modules/blockcms/blockcms.tpl and remove those links or try to put this code in:

{*
* 2007-2014 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2014 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}

{if $block == 1}
	<!-- Block CMS module -->
	{foreach from=$cms_titles key=cms_key item=cms_title}
		<section id="informations_block_left_{$cms_key}" class="block informations_block_left">
			<p class="title_block">
				<a href="{$cms_title.category_link|escape:'html':'UTF-8'}">
					{if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if}
				</a>
			</p>
			<div class="block_content list-block">
				<ul>
					{foreach from=$cms_title.categories item=cms_page}
						{if isset($cms_page.link)}
							<li class="bullet">
								<a href="{$cms_page.link|escape:'html':'UTF-8'}" title="{$cms_page.name|escape:'html':'UTF-8'}">
									{$cms_page.name|escape:'html':'UTF-8'}
								</a>
							</li>
						{/if}
					{/foreach}
					{foreach from=$cms_title.cms item=cms_page}
						{if isset($cms_page.link)}
							<li>
								<a href="{$cms_page.link|escape:'html':'UTF-8'}" title="{$cms_page.meta_title|escape:'html':'UTF-8'}">
									{$cms_page.meta_title|escape:'html':'UTF-8'}
								</a>
							</li>
						{/if}
					{/foreach}
					{if $cms_title.display_store}
						<li>
							<a href="{$link->getPageLink('stores')|escape:'html':'UTF-8'}" title="{l s='Our stores' mod='blockcms'}">
								{l s='Our stores' mod='blockcms'}
							</a>
						</li>
					{/if}
				</ul>
			</div>
		</section>
	{/foreach}
	<!-- /Block CMS module -->
{else}
	<!-- MODULE Block footer -->
	<section class="footer-block col-xs-12 col-sm-2" id="block_various_links_footer">
		<h4>{l s='Information' mod='blockcms'}</h4>
		<ul class="toggle-footer">
			{if $show_price_drop && !$PS_CATALOG_MODE}
				<li class="item">
					<a href="{$link->getPageLink('prices-drop')|escape:'html':'UTF-8'}" title="{l s='Specials' mod='blockcms'}">
						{l s='Specials' mod='blockcms'}
					</a>
				</li>
			{/if}
			{if $show_new_products}
			<li class="item">
				<a href="{$link->getPageLink('new-products')|escape:'html':'UTF-8'}" title="{l s='New products' mod='blockcms'}">
					{l s='New products' mod='blockcms'}
				</a>
			</li>
			{/if}
			{if $show_best_sales && !$PS_CATALOG_MODE}
				<li class="item">
					<a href="{$link->getPageLink('best-sales')|escape:'html':'UTF-8'}" 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')|escape:'html':'UTF-8'}" title="{l s='Our stores' mod='blockcms'}">
						{l s='Our stores' mod='blockcms'}
					</a>
				</li>
			{/if}
			{if $show_contact}
			<li class="item">
				<a href="{$link->getPageLink($contact_url, true)|escape:'html':'UTF-8'}" title="{l s='Contact us' mod='blockcms'}">
					{l s='Contact us' mod='blockcms'}
				</a>
			</li>
			{/if}
			{foreach from=$cmslinks item=cmslink}
				{if $cmslink.meta_title != ''}
					<li class="item">
						<a href="{$cmslink.link|addslashes|escape:'html':'UTF-8'}" title="{$cmslink.meta_title|escape:'html':'UTF-8'}">
							{$cmslink.meta_title|escape:'html':'UTF-8'}
						</a>
					</li>
				{/if}
			{/foreach}
			{if $show_sitemap}
			<li>
				<a href="{$link->getPageLink('sitemap')|escape:'html':'UTF-8'}" title="{l s='Sitemap' mod='blockcms'}">
					{l s='Sitemap' mod='blockcms'}
				</a>
			</li>
			{/if}
		</ul>
		{$footer_text}
	</section>
	{if $display_poweredby}
	<section class="bottom-footer col-xs-12">
		<div>
			© 2014 {l s='[1]Ecommerce software by %s[/1]' mod='blockcms' sprintf=['PrestaShop™'] tags=['<a class="_blank" href="http://www.prestashop.com">']}
		</div>
	</section>
	{/if}
	<!-- /MODULE Block footer -->
{/if}
  • Like 1
Link to comment
Share on other sites

I added this code replacing the old but still no effect. I cleared cache and browsing history as well to see if anything will happen but not seeing any change. Any other ideas?

 

Thanks!

Link to comment
Share on other sites

I commented the links out and cleared cache but still nothing....

<!-- /Block CMS module -->
{else}
	<!-- MODULE Block footer -->
	<div class="block_various_links" id="block_various_links_footer">
		<h4 class="title_block">{l s='Information' mod='blockcms'}</h4>
		<ul>
		<!--	{if $show_price_drop && !$PS_CATALOG_MODE}
				<li class="first_item">
					<a href="{$link->getPageLink('prices-drop')|escape:'html'}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a>
				</li>
			{/if}
			{if $show_new_products}
				<li class="item">
					<a href="{$link->getPageLink('new-products')|escape:'html'}" title="{l s='New products' mod='blockcms'}">{l s='New products' mod='blockcms'}</a>
				</li>
			{/if}
			{if $show_best_sales && !$PS_CATALOG_MODE}
				<li class="item">
					<a href="{$link->getPageLink('best-sales')|escape:'html'}" title="{l s='Best sellers' mod='blockcms'}">{l s='Best sellers' mod='blockcms'}</a>
				</li>	-->
			{/if}
			{if $display_stores_footer}
				<li class="item">
					<a href="{$link->getPageLink('stores')|escape:'html'}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}</a>
				</li>
			{/if}
			{if $show_contact}
				<li class="item">
					<a href="{$link->getPageLink($contact_url, true)|escape:'html'}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a>
				</li>
			{/if}
			{foreach from=$cmslinks item=cmslink}
				{if $cmslink.meta_title != ''}
					<li class="item">
						<a href="{$cmslink.link|addslashes|escape:'html'}" title="{$cmslink.meta_title|escape:'html':'UTF-8'}">{$cmslink.meta_title|escape:'html':'UTF-8'}</a>
					</li>
				{/if}
			{/foreach} <!--
			{if $show_sitemap}
				<li>
					<a href="{$link->getPageLink('sitemap')|escape:'html'}" title="{l s='Sitemap' mod='blockcms'}">{l s='Sitemap' mod='blockcms'}</a>
				</li>	-->
			{/if}
			{if $display_poweredby}
				<li class="last_item">{l s='[1]Ecommerce software by %s[/1]' mod='blockcms' sprintf=['PrestaShop™'] tags=['<a class="_blank" href="http://www.prestashop.com">']}</li>
			{/if}
		</ul>
		{$footer_text}
	</div>
	<!-- /MODULE Block footer -->
{/if}

Link to comment
Share on other sites

Oops my mistake.... I tried this but with no luck so I deleted the links and still nothing. Any suggestion why this is happening  :( ?

!-- /Block CMS module -->
{else}
	<!-- MODULE Block footer -->
	<div class="block_various_links" id="block_various_links_footer">
		<h4 class="title_block">{l s='Information' mod='blockcms'}</h4>
		<ul>
		{*	{if $show_price_drop && !$PS_CATALOG_MODE}
				<li class="first_item">
					
				</li>
			{/if}
			{if $show_new_products}
				<li class="item">
					
				</li>
			{/if}
			{if $show_best_sales && !$PS_CATALOG_MODE}
				<li class="item">
					
				</li>	*}
			{/if}
			{if $display_stores_footer}
				<li class="item">
					<a href="{$link->getPageLink('stores')|escape:'html'}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}</a>
				</li>
			{/if}
			{if $show_contact}
				<li class="item">
					<a href="{$link->getPageLink($contact_url, true)|escape:'html'}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' mod='blockcms'}</a>
				</li>
			{/if}
			{foreach from=$cmslinks item=cmslink}
				{if $cmslink.meta_title != ''}
					<li class="item">
						<a href="{$cmslink.link|addslashes|escape:'html'}" title="{$cmslink.meta_title|escape:'html':'UTF-8'}">{$cmslink.meta_title|escape:'html':'UTF-8'}</a>
					</li>
				{/if}
			{/foreach} {* 
			{if $show_sitemap}
				<li>
					
				</li>	*}
			{/if}
			{if $display_poweredby}
				<li class="last_item">{l s='[1]Ecommerce software by %s[/1]' mod='blockcms' sprintf=['PrestaShop™'] tags=['<a class="_blank" href="http://www.prestashop.com">']}</li>
			{/if}
		</ul>
		{$footer_text}
	</div>
	<!-- /MODULE Block footer -->
{/if}

Link to comment
Share on other sites

Was in wrong module folder, thanks... Only thing now is to slightly move "contact us" up just a bit. Tried making adjustment in global.css but no change successful. Any way you can help with the code? Also if everything in the footer can be moved up a bit will be awesome!

 

post-785683-0-76903600-1400527737_thumb.jpg

 

Appreciate the help  :) !

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

I cant load your image but probably you want to move modules up.

In yourtheme/css/global.css find:

.footer-container #footer .footer-block {
    margin-top: 45px;
}

and change margin to your needs

Link to comment
Share on other sites

  • 2 months later...

Hi

I'm using the theme New Parure Responsive 1.6 and have tried everything that I've seen suggested to remove the 'Our Stores' link. In this theme it appears after the address block in the footer.

Things I've done

edited the blockcms.tpl file to remove suppliers and manufactuerers - this worked fine, but I couldn't find any ref. to the Our Stores in the MODULE Block footer section, removed it from the Block CMS module but this obviously didn't effect the footer/address section.

 

reverted to the default theme, confirmed the setting preferences>Store contacts show in footer was set to No, checked the store, it had gone, reverted back ... the darn thing is back again.

 

Please does anyone have any thoughts on where I might look so i can delete the link?

 

Thanks in advance

Sue

Link to comment
Share on other sites

Hi

I'm using the theme New Parure Responsive 1.6 and have tried everything that I've seen suggested to remove the 'Our Stores' link. In this theme it appears after the address block in the footer.

Things I've done

edited the blockcms.tpl file to remove suppliers and manufactuerers - this worked fine, but I couldn't find any ref. to the Our Stores in the MODULE Block footer section, removed it from the Block CMS module but this obviously didn't effect the footer/address section.

 

reverted to the default theme, confirmed the setting preferences>Store contacts show in footer was set to No, checked the store, it had gone, reverted back ... the darn thing is back again.

 

Please does anyone have any thoughts on where I might look so i can delete the link?

 

Thanks in advance

Sue

 

 

Sorry, I found it just after writing this post. It was in the themes/MyTheme/modules/blockcontactinfos/blockcontactinfos.tpl file.

Link to comment
Share on other sites

×
×
  • Create New...