Jump to content

alex1389

Members
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • First Name
    Alex
  • Last Name
    Gonzalez

Recent Profile Visitors

332 profile views

alex1389's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I'm importing a catalog of products into the Prestashop store, but there is a problem with the image url broken, because the product is show with a default image with interrogation sign. My idea is to skip those url and don't use the default unknown image. Any idea for this?? This is the default image used when image url is broken This is a product with some images by default because of lost images The idea is just to skip those url using some validation, perhaps in Prestashop 1.6.1.10 Core. But I've no code to show, I'm using a module to import XML named: Advanced XML & CSV Importer
  2. Hello Everyone, Somebody knows if exist any good module to import orders into Prestashop?? I´m mean a file csv or xml to integrate the orders, importing client info, address and details of the order (product attributes chosen) Thanks in fordward Alex
  3. www.diablucos.com This is a prestashop store specialized in shoes for kids, is almost ready. Cc welcome! Thanks
  4. Hello, I have seen your site, and could be faster, I recomend: 1- Try with the performance options in prestashop backend 2- Upgrade the speed using gtmetrix. 3- Buy a cache module for ultra-speed. Good luck.
  5. After a long search I have not seen any solution to add attributes to home page for example. I was thinking should be a way or method to get the list of all attributes by id_product. My question is how to show for example in product-item.tpl the attr color or sizes able just with on hover event. Thanks
  6. I´m trying to add a new function in Product Page, I have set a new option to show a form with Fancybox and then after submit take the details and send an email to admin. This is the code added to product.tpl: <script type="text/javascript"> $(".fancybox").fancybox({ openEffect : 'fade', closeEffect : 'fade' }); function sentEmail() { $.fancybox.close(true); } </script> <button type="button" name="special_request" class="exclusive btn btn-inverse status-enable"> <a href="#special_request" class="fancybox">Pedido especial</a> </button> <form id="special_request" class="form-basic" method="post" action="" enctype="multipart/form-data" style="display:none;height:400px;width:600px;"> <div class="form-title-row"> <h1> {$product->name|escape:'html':'UTF-8'} </h1> </div> <div class="form-row"> <label> <span>Nombre</span> <input contextmenu="Prueba" placeholder="Indroduzca su nombre" type="text" name="name"> </label> </div> <div class="form-row"> <label> <textarea id="comments" name="comentarios" placeholder="Escriba aquí su pedido especial" rows="4" cols="40"></textarea> </label> </div> <div class="form-row"> <button type="button" name="enviar" onclick="sentEmail()">Enviar</button> </div> </form> Someone can tell me the best choice to get the get the submit and then handle the sent of email to admin with the data entered? Thanks
×
×
  • Create New...