Jump to content

[Solucionado] Eliminar elemento del frontoffice


seriandaluza

Recommended Posts

Hola, soy nuevo en el foro y no sé si este caso ya se ha comentado en el foro. Estoy trabajando con Prestashop 1.5.6.2 y en el FrontOffice, en la columna izquierda, justo encima del footer me aparece un código que  no se ha cerrado o creado bien ( --> ). Estoy buscando dicho código por todos lados pero no lo encuentro. No se si este caso ya se ha comentado en el foro.

En Web Developer me aparece este Html.

 

<!-- Block CMS module -->

                        <!-- /Block CMS module -->

 

                                                </div>-->

                                               

                                    </div>

 

<!-- Footer -->

 

El link de la web por si me podéis ayudar:

 

http://textil.seriandaluza.com/index.php

 

Gracias de antemano,

 

Saludos.

Link to comment
Share on other sites

Muchas gracias, he estado mirando "blockcms.tpl" pero no encuentro ninguna etiqueta mal cerrada. No sé si puede ser algun residuo de instalar y desintalar algún módulo, ¿puede ser?. Dejo el código de blockcms.tpl. de mi plantilla, que es la que trae por defecto Prestashop. Muchas gracias por la ayuda.

 

 

 

{*
* 2007-2013 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-2013 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}
        <div id="informations_block_left_{$cms_key}" class="block informations_block_left">
            <p class="title_block"><a href="{$cms_title.category_link|escape:'html'}">{if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if}</a></p>
            <ul class="block_content">
                {foreach from=$cms_title.categories item=cms_page}
                    {if isset($cms_page.link)}<li class="bullet"><b style="margin-left:2em;">
                    <a href="{$cms_page.link|escape:'html'}" title="{$cms_page.name|escape:html:'UTF-8'}">{$cms_page.name|escape:html:'UTF-8'}</a>
                    </b></li>{/if}
                {/foreach}
                {foreach from=$cms_title.cms item=cms_page}
                    {if isset($cms_page.link)}<li><a href="{$cms_page.link|escape:'html'}" 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'}" title="{l s='Our stores' mod='blockcms'}">{l s='Our stores' mod='blockcms'}</a></li>{/if}
            </ul>
        </div>
    {/foreach}
    <!-- /Block CMS module -->
{else}
    <!-- 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')|escape:'html'}" 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')|escape:'html'}" 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')|escape:'html'}" 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'}" 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)|escape:'html'}" 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|escape:'html'}" 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')|escape:'html'}" 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 -->
{/if}

 

 

 

gracias de antemano,

 

saludos

Link to comment
Share on other sites

Espera veo que tienes la columna derecha comentada, creo que en tu fichero:
 

/themes/plantilla/footer.tpl

Tienes algo asi:
 


				<!-- <div id="right_column" class="column grid_2 omega">
					{$HOOK_RIGHT_COLUMN}
				</div> -->

Dejalo asi:

{* 
<div id="right_column" class="column grid_2 omega">
					{$HOOK_RIGHT_COLUMN}
				</div> *}
Edited by Sergio Ruiz (see edit history)
  • Like 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...