Search the Community
Showing results for tags 'unir'.
-
Hola amigos, La duda es sencilla, me gustaría unir la gestión de stock de facturaplus 2012 con Prestashop 1.4, de tal manera que cuando se actualice en el gestor automaticamente se refleje en la web. he buscado módulos pero no he encontrado nada específico. ¿alguna ayuda? Gracias por todo, un saludo.
-
- facturaplus
- gestor
-
(and 1 more)
Tagged with:
-
Pues eso, que quería que en la sección nuestras tiendas me apareciera el mapa de google aún teniendo activada la opción de muestra simplificada de localización de la tienda. TEngo la versión 1.4.9. el código de stores.tpl dentro de mi carpeta de theme es: {* * 2007-2012 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.or...ses/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-2012 PrestaShop SA * @version Release: $Revision: 14008 $ * @license http://opensource.or...ses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {capture name=path}{l s='Our stores'}{/capture} {include file="$tpl_dir./breadcrumb.tpl"} <script src="http://maps.google.com/maps/api/js?sensor=true">// DEBUG </script> <h1>{l s='Our stores'}</h1> {if $simplifiedStoresDiplay} {if $stores|@count} <p>{l s='Here are the details of our stores, feel free to contact us:'}</p> {foreach from=$stores item=store} <div class="store-small"> {if $store.has_picture}<p><img src="{$img_store_dir}{$store.id_store}.jpg" alt="" width=640px height=480px /></p>{/if} <p> <b>{$store.name|escape:'htmlall':'UTF-8'}</b><br /> {$store.address1|escape:'htmlall':'UTF-8'}<br /> {if $store.address2}{$store.address2|escape:'htmlall':'UTF-8'}{/if}<br /> {$store.postcode} {$store.city|escape:'htmlall':'UTF-8'}{if $store.state}, {$store.state}{/if}<br /> {$store.country|escape:'htmlall':'UTF-8'}<br /> {if $store.phone}{l s='Phone:' js=0} {$store.phone}{/if} </p> </div> {/foreach} {/if} {else} <script type="text/javascript"> // <![CDATA[ var map; var markers = []; var infoWindow; var locationSelect; var defaultLat = '{$defaultLat}'; var defaultLong = '{$defaultLong}'; var translation_1 = '{l s='No store found, try to select a wider radius' js=1}'; var translation_2 = '{l s='store found - see details:' js=1}'; var translation_3 = '{l s='stores found - see all results:' js=1}'; var translation_4 = '{l s='Phone:' js=1}'; var translation_5 = '{l s='Get Directions' js=1}'; var translation_6 = '{l s='Not found' js=1}'; var hasStoreIcon = '{$hasStoreIcon}'; var distance_unit = '{$distance_unit}'; var img_store_dir = '{$img_store_dir}'; var img_ps_dir = '{$img_ps_dir}'; var searchUrl = '{$searchUrl}'; //]]> </script> <p>{l s='Enter a location (eg.: a zip/postal code, an address, a city or a country) in order to find the nearest stores.'}</p> <p>{l s='Your location:'} <input type="text" name="location" id="addressInput" value="{l s='Address, zip/postal code, city, state or country'}" onclick="this.value='';" /></p> <p style="margin-top: 15px;"> {l s='Radius:'} <select name="radius" id="radiusSelect"> <option value="15">15</option> <option value="25">25</option> <option value="50">50</option> <option value="100">100</option> </select> {$distance_unit} <input type="button" class="button" onclick="searchLocations();" value="{l s='Search'}" style="display: inline;" /> <img src="{$img_ps_dir}loader.gif" class="middle" alt="" id="stores_loader" /> </p> <div><select id="locationSelect"></select></div> <div id="map"></div> <table cellpadding="0" cellspacing="0" id="stores-table"> <tr> <th>{l s='#'}</th> <th>{l s='Store'}</th> <th>{l s='Address'}</th> <th>{l s='Distance'}</th> </tr> </table> {/if} lo que ya tengo hecho es cambiar el tamaño de la imagen de la tienda y el enlace para que me muestre la foto en grande del archivo imagenes de tienda. Se me había ocurrido copiar todo lo que hay entre el {else} y el {/if} del final y meterlo dentro del {if $simplifiedStoresDiplay} como aquí: {* * 2007-2012 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-2012 PrestaShop SA * @version Release: $Revision: 14008 $ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {capture name=path}{l s='Our stores'}{/capture} {include file="$tpl_dir./breadcrumb.tpl"} <script src="http://maps.google.com/maps/api/js?sensor=true">// DEBUG </script> <h1>{l s='Our stores'}</h1> {if $simplifiedStoresDiplay} {if $stores|@count} <p>{l s='Here are the details of our stores, feel free to contact us:'}</p> {foreach from=$stores item=store} <div class="store-small"> {if $store.has_picture}<p><img src="{$img_store_dir}{$store.id_store}.jpg" alt="" width=640px height=480px /></p>{/if} <p> <b>{$store.name|escape:'htmlall':'UTF-8'}</b><br /> {$store.address1|escape:'htmlall':'UTF-8'}<br /> {if $store.address2}{$store.address2|escape:'htmlall':'UTF-8'}{/if}<br /> {$store.postcode} {$store.city|escape:'htmlall':'UTF-8'}{if $store.state}, {$store.state}{/if}<br /> {$store.country|escape:'htmlall':'UTF-8'}<br /> {if $store.phone}{l s='Phone:' js=0} {$store.phone}{/if} </p> <script type="text/javascript"> // <![CDATA[ var map; var markers = []; var infoWindow; var locationSelect; var defaultLat = '{$defaultLat}'; var defaultLong = '{$defaultLong}'; var translation_1 = '{l s='No store found, try to select a wider radius' js=1}'; var translation_2 = '{l s='store found - see details:' js=1}'; var translation_3 = '{l s='stores found - see all results:' js=1}'; var translation_4 = '{l s='Phone:' js=1}'; var translation_5 = '{l s='Get Directions' js=1}'; var translation_6 = '{l s='Not found' js=1}'; var hasStoreIcon = '{$hasStoreIcon}'; var distance_unit = '{$distance_unit}'; var img_store_dir = '{$img_store_dir}'; var img_ps_dir = '{$img_ps_dir}'; var searchUrl = '{$searchUrl}'; //]]> </script> <p>{l s='Enter a location (eg.: a zip/postal code, an address, a city or a country) in order to find the nearest stores.'}</p> <p>{l s='Your location:'} <input type="text" name="location" id="addressInput" value="{l s='Address, zip/postal code, city, state or country'}" onclick="this.value='';" /></p> <p style="margin-top: 15px;"> {l s='Radius:'} <select name="radius" id="radiusSelect"> <option value="15">15</option> <option value="25">25</option> <option value="50">50</option> <option value="100">100</option> </select> {$distance_unit} <input type="button" class="button" onclick="searchLocations();" value="{l s='Search'}" style="display: inline;" /> <img src="{$img_ps_dir}loader.gif" class="middle" alt="" id="stores_loader" /> </p> <div><select id="locationSelect"></select></div> <div id="map"></div> <table cellpadding="0" cellspacing="0" id="stores-table"> <tr> <th>{l s='#'}</th> <th>{l s='Store'}</th> <th>{l s='Address'}</th> <th>{l s='Distance'}</th> </tr> </table> </div> {/foreach} {/if} {else} <script type="text/javascript"> // <![CDATA[ var map; var markers = []; var infoWindow; var locationSelect; var defaultLat = '{$defaultLat}'; var defaultLong = '{$defaultLong}'; var translation_1 = '{l s='No store found, try to select a wider radius' js=1}'; var translation_2 = '{l s='store found - see details:' js=1}'; var translation_3 = '{l s='stores found - see all results:' js=1}'; var translation_4 = '{l s='Phone:' js=1}'; var translation_5 = '{l s='Get Directions' js=1}'; var translation_6 = '{l s='Not found' js=1}'; var hasStoreIcon = '{$hasStoreIcon}'; var distance_unit = '{$distance_unit}'; var img_store_dir = '{$img_store_dir}'; var img_ps_dir = '{$img_ps_dir}'; var searchUrl = '{$searchUrl}'; //]]> </script> <p>{l s='Enter a location (eg.: a zip/postal code, an address, a city or a country) in order to find the nearest stores.'}</p> <p>{l s='Your location:'} <input type="text" name="location" id="addressInput" value="{l s='Address, zip/postal code, city, state or country'}" onclick="this.value='';" /></p> <p style="margin-top: 15px;"> {l s='Radius:'} <select name="radius" id="radiusSelect"> <option value="15">15</option> <option value="25">25</option> <option value="50">50</option> <option value="100">100</option> </select> {$distance_unit} <input type="button" class="button" onclick="searchLocations();" value="{l s='Search'}" style="display: inline;" /> <img src="{$img_ps_dir}loader.gif" class="middle" alt="" id="stores_loader" /> </p> <div><select id="locationSelect"></select></div> <div id="map"></div> <table cellpadding="0" cellspacing="0" id="stores-table"> <tr> <th>{l s='#'}</th> <th>{l s='Store'}</th> <th>{l s='Address'}</th> <th>{l s='Distance'}</th> </tr> </table> {/if} y me muestra el selector de distancia del mapa pero el mapa no se ve. El enlace a mi chapucilla es el siguiente: http://monnalisa-shop.com/tiendas A ver si a alguien se le ocurre algo.
- 6 replies
-
- mapa google
- vista
-
(and 4 more)
Tagged with:
-
Hola a todos de nuevo, hoy propongo una nueva duda. Sabeis como es posible integrar los productos con el arbol de categorias con el fin de que sea un unico elemento? No se si me exprese de forma adecuada, pero lo que quiero conseguir es algo como lo que pongo en la foto. Que siempre que se vean las categorias de productos, a la derecha aparezcan los productos que la componen. Gracias por adelantado
-
- category
- category-tree
-
(and 3 more)
Tagged with: