Jump to content

CMS-Block NUR im Footer anzeigen etc.


Recommended Posts

Hallo,

 

leider haben mir die bisherigen Beiträge nicht weitergeholfen.

 

1. Wie kann ich es erreichen, dass der CMS-Block ("Informationen") NUR im Footer angezeigt wird und nicht im Seitenbereich links?

 

2. Wie kann ich erreichen, dass dann im Footer nur von mir gewollte Links angezeigt werden? Wenn ich ein Häkchen setze bei "Verschiedene Informationen und Links in der Fußzeile anzeigen", werden auch Specials usw. angezeigt, nehme ich das Häkchen weg, verschwindet alles.

 

Version 1.5.3.1.

 

Danke für Hilfe!

Link to comment
Share on other sites

Live edit hat geklappt, danke.

 

Im Footer im CMS Block unter Informationen möchte ich dann die automatisch angezeigten Links löschen (Specials, Verkaufshits, Unsere Shops, Sitemaps usw.). Dazu muss ich doch nicht die footer.tpl bearbeiten??

 

Gibt es außerdem eine Möglichkeit, den Block "Kategorien" im Footer zu löschen?

Link to comment
Share on other sites

Hier mal ein Auszug aus meinem alten Shop ( 1.3.7 ) da habe ich die footer.tpl selber gestaltet

 

 {if !$content_only}
   </div>
<!-- Right -->
   <div id="right_column" class="column">
 {$HOOK_RIGHT_COLUMN}
   </div>
  </div>
<!-- Footer -->
  <div id="footer">{$HOOK_FOOTER}</div>
 </div>
{/if}

 <div id="bottom-menu-bar">
	    <ul>
		    <li><a href="{$base_dir}authentication.php?back=my-account.php">{l s='Login'}</a></li>

		    <li class="last"><a href="#" class="top-button">Top</a></li>
	    </ul>
    </div>
    <!-- FOOTER NR2 -->
    <div id="footer2">
<div class="multi-columns">
		    <div class="fourth"></div>
		    <div class="fourth">
<h4> </h4>
			    <ul>

				    <li><a href="{$base_dir}prices-drop.php">{l s='Specials'}</a></li>
				    <li><a href="{$base_dir}new-products.php">{l s='New Products'}</a></li>
				    <li><a href="{$base_dir}best-sales.php">{l s='Top Sellers'}</a></li>
				    <li><a href="{$base_dir}contact-form.php">{l s='Contact'}</a></li>
				    <li><a href="{$base_dir}sitemap.php">{l s='Sitemap'}</a></li>

			    </ul>
		    </div>
		    <div class="fourth">
			    <h4> </h4>
			    <ul>
				    <li><a href="{$base_dir}my-account.php">{l s='Your Account'}</a></li>

			    <li><a href="{$base_dir}order.php">{l s='Your Shopping Cart'}</a></li>
				    <li><a href="{$base_dir}order.php">{l s='Manufacturers'}</a></li>

				    <li><a href="{$base_dir}cms.php?id_cms=3">{l s='Terms of Use'}</a></li>
			    </ul>
		    </div>
    <div class="fourth">
			    <h4> </h4>
			    <ul>
	    <li><a href="http://www.domain.com/modules/faq/recipes.php">Opskrifter</a></li>
<li><a href="http://www.domain.com/content/1-e-nummer-guide">E-Nummer Guide</a></li>
<li><a href="http://www.domain.com/content/2-produkt-information">Produkt information</a></li>
<li><a href="http://www.domain.com/content/7-bezgluten-information">Bezgluten Information</a></li>
<li><a href="http://www.domain.com/content/5-sikker-betaling">Sikker betaling</a></li>
<li><a href="http://www.domain.com/content/6-forsendelse">Forsendelse</a></li></ul>
 </div>
 <div class="fourth"></div>
 <h4> </h4>
 <ul>
   <li><a href="http://www.domain.com/content/7-bezgluten-information" title="Bezgluten Information">Bezgluten Information</a></li>
  <li><a href="http://www.domain.com/content/8-bedste-glutenfri-produkt-2010" title="Bedste glutenfri produkt 2010">Bedste glutenfri produkt 2010</a></li>
  <li><a href="http://www.domain.com/content/9-bedste-glutenfri-produkt-2009" title="Bedste glutenfri produkt 2009">Bedste glutenfri produkt 2009</a></li>
  <li><a href="http://www.domain.com/content/10-bezgluten-certifikater" title="Bezgluten Certifikater">Bezgluten Certifikater</a></li> </ul>
		    </div>

Link to comment
Share on other sites

Live edit hat geklappt, danke.

 

Im Footer im CMS Block unter Informationen möchte ich dann die automatisch angezeigten Links löschen (Specials, Verkaufshits, Unsere Shops, Sitemaps usw.). Dazu muss ich doch nicht die footer.tpl bearbeiten??

 

Gibt es außerdem eine Möglichkeit, den Block "Kategorien" im Footer zu löschen?

 

Wenn du den CMS-Block oder Kategorienblock im Footer nicht angezeigt haben möchtest, dann den Hook einfach entfernen im Footer. Das gleiche gilt auch für die anderen Links. Nich nötig hier mit Module oder Hacks aus älteren Versionen, die unter PS 1.5.3 wegen alter Smarty-Codes sowieso nicht funktinieren oder Fehler liefern.

post-60291-0-64387800-1370774110_thumb.jpg

post-60291-0-60092300-1370774127_thumb.jpg

Link to comment
Share on other sites

um unten im Footer die Zusatzlinks im CMS Block auszublenden musst du die blockcms.tpl Datei unter modules/blockcms editieren

 

1. kopier die tpl Datei in themes/deinthema/modules/blockcms (falls nicht bereits geschehen) und ersetzen den Code (ab Zeile 46)

 

<!-- MODULE Block footer -->
<div class="block_various_links" id="block_various_links_footer">
<p class="title_block">{l s='Information' mod='blockcms'}</p>
<ul>

{*

{if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')}" 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')}" 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')}" 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')}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}</a></li>{/if}
<li class="item"><a href="{$link->getPageLink($contact_url, true)}" title="{l s='Contact us' mod='blockcms'}">{l s='Contact us' 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}
<li><a href="{$link->getPageLink('sitemap')}" title="{l s='sitemap' mod='blockcms'}">{l s='Sitemap' mod='blockcms'}</a></li>
{if $display_poweredby}<li class="last_item">{l s='Powered by' mod='blockcms'} <a class="_blank" href="http://www.prestashop.com">PrestaShop</a>™</li>{/if}
</ul>
{$footer_text}
</div>
<!-- /MODULE Block footer -->

 

im Grunde musst du nur die überflüssigen Links einklammern

 

Gruß

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...