wichomaster Posted February 26, 2013 Share Posted February 26, 2013 Hola que tal, acabo de descargar una plantilla y tenia por defecto su logo asi que lo cambie y puse el mio pero a pesar de haberlo hecho aun sigue apareciendo el que venia por defecto en la plantilla, alguien sabe por que sucede esto? Aqui dejo el enlace a mi pagina web para que vean a lo que me refiero: http://serviciosdigitalesmexico.com/ PD: De antemano muchas gracias por su ayuda Saludos Link to comment Share on other sites More sharing options...
Ehinarr Posted February 26, 2013 Share Posted February 26, 2013 La imagen del logo se colocó directamente en la header.tpl. Véase: http://serviciosdigitalesmexico.com/themes/thgr00027/img/logo.png?1361852236 Link to comment Share on other sites More sharing options...
wichomaster Posted February 26, 2013 Author Share Posted February 26, 2013 La imagen del logo se colocó directamente en la header.tpl. Véase: http://serviciosdigi....png?1361852236 Gracias por su respuesta podria decirme que es lo que tengo que hacer para remplazarla? Saludos Link to comment Share on other sites More sharing options...
Ehinarr Posted February 26, 2013 Share Posted February 26, 2013 Si el tema no tiene un módulo para gestionar el logo, tienes que abrir el archivo /tu theme/header.tpl y cambiar la ruta a la imagen de tu tienda. Link to comment Share on other sites More sharing options...
wichomaster Posted February 26, 2013 Author Share Posted February 26, 2013 Si el tema no tiene un módulo para gestionar el logo, tienes que abrir el archivo /tu theme/header.tpl y cambiar la ruta a la imagen de tu tienda. Este es el codigo <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang_iso}"> <head> <title>{$meta_title|escape:'htmlall':'UTF-8'}</title> {if isset($meta_description) AND $meta_description} <meta name="description" content="{$meta_description|escape:html:'UTF-8'}" /> {/if} {if isset($meta_keywords) AND $meta_keywords} <meta name="keywords" content="{$meta_keywords|escape:html:'UTF-8'}" /> {/if} <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> <meta http-equiv="content-language" content="{$meta_language}" /> <meta name="generator" content="PrestaShop" /> <meta name="robots" content="{if isset($nobots)}no{/if}index,{if isset($nofollow) && $nofollow}no{/if}follow" /> <link rel="icon" type="image/vnd.microsoft.icon" href="{$favicon_url}?{$img_update_time}" /> <link rel="shortcut icon" type="image/x-icon" href="{$favicon_url}?{$img_update_time}" /> <script type="text/javascript"> var baseDir = '{$content_dir}'; var baseUri = '{$base_uri}'; var static_token = '{$static_token}'; var token = '{$token}'; var priceDisplayPrecision = {$priceDisplayPrecision*$currency->decimals}; var priceDisplayMethod = {$priceDisplay}; var roundMode = {$roundMode}; </script> {if isset($css_files)} {foreach from=$css_files key=css_uri item=media} <link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" /> {/foreach} {/if} {if isset($js_files)} {foreach from=$js_files item=js_uri} <script type="text/javascript" src="{$js_uri}"></script> {/foreach} {/if} {$HOOK_HEADER} </head> <body {if isset($page_name)}id="{$page_name|escape:'htmlall':'UTF-8'}"{/if} class="{if $hide_left_column}hide-left-column{/if} {if $hide_right_column}hide-right-column{/if}"> {if !$content_only} {if isset($restricted_country_mode) && $restricted_country_mode} <div id="restricted-country"> <p>{l s='You cannot place a new order from your country.'} <span class="bold">{$geolocation_country}</span></p> </div> {/if} <!-- Header --> <div id="header" class="grid_9 alpha omega"> <div class="header_container"> <a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}"> <img class="logo" src="{$img_dir}logo.png?{$img_update_time}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} /> </a> <div id="header_right" class="grid_6 omega">{$HOOK_TOP}</div> </div> <!-- Page --> <div id="page" class="container_9 clearfix"> <div id="columns" class="grid_9 alpha omega clearfix"> <!-- Left --> <div id="left_column" class="column grid_2 alpha"> {$HOOK_LEFT_COLUMN} </div> <!-- Center --> <div id="center_column" class=" grid_5"> {/if} DONDE VIENE LA RUTA QUE MENCIONAS?, disculpa mi ignorancia la verdad es que no se mucho sobre progamacion. Saludos Link to comment Share on other sites More sharing options...
Ehinarr Posted February 26, 2013 Share Posted February 26, 2013 (edited) Es aqui <img class="logo" src="{$img_dir}logo.png?{$img_update_time}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} /> . Se PSv1.4.x, puede utilizar {$img_ps_dir} en lugar de {$img_dir} Se PSv1.5.x, puede utilizar solamente src="{$logo_url}" en lugar de src="{$img_dir}logo.png?{$img_update_time}" Pero ten cuidado. Puedes comparar con el header.tpl del tema por defecto PrestaShop... Edited February 26, 2013 by Ehinarr (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts