Jump to content

Dawn

Members
  • Posts

    62
  • Joined

  • Last visited

Profile Information

  • Activity
    Other

Recent Profile Visitors

3,439,331 profile views

Dawn's Achievements

Rookie

Rookie (2/14)

  • Conversation Starter Rare
  • Collaborator Rare
  • First Post Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

4

Reputation

  1. Hola, estoy intentando filtrar una serie de productos antiguos que no quiero que aparezcan en el backoffice. Se que en el listado tiene el filtro de mínima y máxima ID, eso me serviría pero quiero no tener que filtrar yo, sino que cuando entre al listado automáticamente ya no me aparecieran los productos que no quiero. No se si programando existe la opción, entiendo que si, pero aun no he encontrado como hacerlo. He visto como hacer que no aparezcan los que no tienen stock pero eso no es una opción para mi. ¿conocéis alguna forma de hacerlo? Gracias.
  2. Hi, i am trying to hide some products in my store backoffice. The solution that I had thought was to hide them by the product ID; hiding it if they are out of stock is not a valid solution for me. I know that there is a filter for the product ID that can be set, but I would like to set it without change it manually each time, not know if change the sql before listing the products is the solution. Any suggestion? Mi shop is a PS 1.7.7.8
  3. Hi! same problem here but with PS 1.7...in that version this lines not exists. Any solution? Thanks!
  4. Hi, i have a problem with after upgrading to 1.7, i see same product many times at the backend. In PS 1.6 it was solve replacing some lines to AdminProductsController.php, but that lines not exists in PS 1.7. That was the trick: $this->_use_found_rows = false; $this->_group = ''; with this: $this->_use_found_rows = true; $this->_group = 'GROUP BY '.$alias.'.id_product'; Somebody with same problem? Thanks.
  5. Hi, same problem here! Can you solve that? Thanks!
  6. Hello, I am having a problem in the email that the customer receives when he buys a product that has an attachment, in my case a PDF. The store is in HTTPS, however in the email received the link to download this PDF is with HTTP. I have read that this is controlled by the OrderHistory.php file, and that the tag is {virtualProducts}, but no changes I make there modify any of the data received in the email. Has anyone had this problem and has a solution? My PS version is 1.6.1.11 Thank you.
  7. Hola, estoy teniendo un problema en el mail que recibe el cliente cuando compra un producto que tiene un adjunto, en mi caso un PDF. La tienda esta en HTTPS, sin embargo en el mail recibido el enlace para descargar ese PDF esta con HTTP. He leído que esto lo controla el archivo OrderHistory.php, y que la etiqueta es {virtualProducts}, pero ningún cambio que hago ahí modifica nada de los datos recibidos en el email. ¿A alguien le ha pasado este problema y tiene alguna solución? Mi versión de PS es la 1.6.1.11 Gracias.
  8. I am using that module and have a problem with my multishop and the tax when a quotation pass to a order. I have received a response once but my problem is not solved. From there i have no more news about them.
  9. Hola vllopico, a mi me pasaba lo mismo y lo solucione como tu, cambiando el id_product por el del producto en cuestión, pero cada vez que añado una combinación tengo que ir a la BD a cambiarlo. Has conseguido hacer funcionar esto sin tener que ir cada vez a cambiar el id_product a la BD??? Gracias.
  10. Buenos días, estoy teniendo que modificar la funcionalidad del buscador que viene por defecto y me encuentro con un problema. Lo que tengo que hacer es que ese buscador muestre todos los productos de la página excepto los de una categoria en concreto. Lo que pense es modificar la consulta que utiliza el buscador para mostrar los productos, pero el problema viene cuando esta categoria que yo quiero ocultar tiene subsubcategorias. Esta es la consulta que usa el buscador: SELECT cp.`id_product` FROM `'._DB_PREFIX_.'category_product` cp '.(Group::isFeatureActive() ? 'INNER JOIN `'._DB_PREFIX_.'category_group` cg ON cp.`id_category` = cg.`id_category`' : '').' INNER JOIN `'._DB_PREFIX_.'category` c ON cp.`id_category` = c.`id_category` INNER JOIN `'._DB_PREFIX_.'product` p ON cp.`id_product` = p.`id_product` '.Shop::addSqlAssociation('product', 'p', false).' WHERE c.`active` = 1 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "search") AND product_shop.indexed = 1 y lo que quiero en el WHERE es añadir la id de la parent_category. Por ejemplo, si tengo el arbol de esta categoria como categoria subcategoria 1 subcategoria 2 subsubcategoria yo quiero obtener la ID de la categoria principal (no la home), aunque me encuentre en subsubcategoria, osea la primera categoria padre. No se si me explico. He estado trasteando con los campos nleft y con el nright pero no he solucionado el problema. Alguien sabe como obtener esta ID?? O sabe otra forma de excluir los productos de una categoria del buscador??? Siento el tocho, gracias de antemano.
  11. http://www.valquer.com/tienda only happen at express checkout
  12. Hi, i activated express checkout but when i select a country that contain states this select not appear. In the normal registration and when you want to edit an address this select is showed correctly. This problem only happen at express checkout. I copied default /js, modify .tpl, but no success. Anyone have this problem? thanks
  13. Hola, me ha tocado activar el pedido instantanea en una tienda que estoy haciendo, y mi problema viene de que cuando selecciono un pais que contiene estados, no aparece el desplegable para seleccionar uno. Sin embargo en el registro normal, o cuando quieres editar una direccion, este desplegable aparece normalmente. He probado a copiar .js del tema, cambiar el codigo del .tpl, pero nada me ha funcionado. Es un poco raro que solo no aparezca en el pedido instantaneo no? Alguien ha tenido este problema? Gracias de antemano. PD: utilizo la 1.6.0.14
  14. Sorry for de delay but i had to take another project and can't prove what you say. As soon as return to this project i prove this code and put here the results. Thanks for answering!
×
×
  • Create New...