Jump to content

Modulo "Mas Vendidos" en footer


EnEspaña

Recommended Posts

Estoy intentando ELIMINAR la opción de "los mas vendidos" del pie de pagina siguiendo las recomendaciones que he ledido por aquí pero el problema que mi código de archivo no es igual

blockcms.tpl

<!-- MODULE Block footer -->
        <div class="blocks span3">
        <h2>{l s='Information' mod='blockcms'}</h2>
        <ul>
                {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>
        {$footer_text}
        </div>

QUE DEBO TOCAR AQUI PARA QUITAR DEL TODO ESTA OPCION?

<!-- MODULE Home Block best sellers -->
<div id="best-sellers_block_center" class="block products_block">
    <p class="title_block">{l s='Top sellers' mod='blockbestsellers'}</p>
    {if isset($best_sellers) AND $best_sellers}
        <div class="block_content">
            {assign var='liHeight' value=320}
            {assign var='nbItemsPerLine' value=4}
            {assign var='nbLi' value=$best_sellers|@count}
            {math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines}
            {math equation="nbLines*liHeight" nbLines=$nbLines|ceil liHeight=$liHeight assign=ulHeight}
            <ul style="height:{$ulHeight}px;">
            {foreach from=$best_sellers item=product name=myLoop}
                <li style="border-bottom:0" class="ajax_block_product {if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if} {if $smarty.foreach.myLoop.iteration%$nbItemsPerLine == 0}last_item_of_line{elseif $smarty.foreach.myLoop.iteration%$nbItemsPerLine == 1}clear{/if} {if $smarty.foreach.myLoop.iteration > ($smarty.foreach.myLoop.total - ($smarty.foreach.myLoop.total % $nbItemsPerLine))}last_line{/if}">
                    <p class="s_title_block"><a href="{$product.link}" title="{$product.name|truncate:32:'...'|escape:'htmlall':'UTF-8'}">{$product.name|truncate:27:'...'|escape:'htmlall':'UTF-8'}</a></p>
                    <div class="product_desc"><a href="{$product.link}" title="{l s='More' mod='blockbestsellers'}">{$product.description_short|strip_tags|truncate:130:'...'}</a></div>
                    <a href="{$product.link}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img class="rollover-images" data-rollover="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default', $product.id_product)}" src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')}" alt="{$product.name|escape:html:'UTF-8'}" /></a>
                    <div>
                        {if !$PS_CATALOG_MODE}<p class="price_container"><span class="price">{$product.price}</span></p>{else}<div style="height:21px;"></div>{/if}            
                        <a class="button" href="{$product.link}" title="{l s='View' mod='blockbestsellers'}">{l s='View' mod='blockbestsellers'}</a>
                    </div>
                </li>
            {/foreach}
            </ul>
            <p class="clearfix" style="padding: 5px;"><a style="float:right;" href="{$link->getPageLink('best-sales')}" title="{l s='All best sellers' mod='blockbestsellers'}" class="button_large">{l s='All best sellers' mod='blockbestsellers'}</a></p>
        </div>
    {else}
        <p>{l s='No best sellers at this time' mod='blockbestsellers'}</p>
    {/if}
    <br class="clear"/>
</div>
<!-- /MODULE Home Block best sellers -->


                               
                     
        
   <!-- /MODULE Block footer -->

 

Edited by Enrique Engblom
wrap code (see edit history)
Link to comment
Share on other sites

Muchas gracias por tu respuesta :)

 

Si esa opción ya la vi en algún hilo (he estado leyendo sobre esto pero no encuentro solución ) Si desactivo la opción " Muestre varias enlaces e informaciones en el Footer" desaparece todo y yo solo quiero que desaparezca la opción de "mas vendidos" (y eso no puedo quitarlo solo en dicho modulo

 

Me gustaría que desapareciese la pagina del completo (además que no lo esta registrando bien) el link y la página

 

Alguien me puede ayudar.

 

Muchas gracias

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