Jump to content

Guixe94

Members
  • Posts

    32
  • Joined

  • Last visited

Profile Information

  • Location
    Spain
  • Activity
    Project Owner

Guixe94's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hello, I am trying to show the Cost price column (WholeSale price) on the product list of the prestashop backend. I find this link to add the final price (with tax): https://github.com/PrestaShop/PrestaShop/pull/11484/files So I try to do that but on the list.html.twig file I changed "product.price_final" by "product.wholesale_price" but then on my prestashop I can see the column but all the values show "N/A". On all the products I have fill the "Cost price" field on Pricing tab. Can someone help me with this? Probably is a silly mistake but I can't see it.. PrestaShop version: 1.7.5.0. Thanks.
  2. Hello, I want to create a new "category" when a modify o create a new product, by "category" I refer for example tha actual categories are: Info, price, sea, shippment, etc. How you can see in the photo (in Spanish): So i want to add under "Proveedores" a new category with the name "others" or something similar where i want to have some text that i have to put and some images that i have to upload. I want to add the text to the table of each product where actualy is the price, if product is activated or not, etc. And also save thing in another tables but with the id of the product. Anyone knows how can I do that more or less? Thanks! And sorry for mi English...
  3. Hola, Os explico, mi tienda es un poco especial por eso quiero añadir una seccion nueva cuando creas/configuras un producto (en el backend), con seccion me refiero a precio, transportistas, combinaciones, etc pues una más. Os dejo una img para que veáis mejor: Pues me gustaria añadir una nueva pestaña debajo de "Proveedores" por ejemplo con el nombre "otras opciones" en la que me aparezcan campos que luego yo pueda guardar en la tabla del producto, donde se guarda precio, si esta activo, etc y en otra tabla también. En principio los campos a introducir serian texto e imagen. He estado mirando archivos y eso pero no consigo ni siquiera dar con el archivo donde estan estos datos. A ver si alguien aunque no sepa bien bien como hacerlo me puede echar un cable aunque sea para encontrar donde tengo que cambiar cosas etc. Gracias!
  4. Hola, Estoy montando mi tienda y no tengo ni idea que modulo de pago utilizar.. en principio quiero que se pueda pagar por transferencia bancaria (el modulo que viene por defecto en Prestashop 1.6 ya me sirve) y luego la posibilidad de pagar con tarjeta (visa, mastercard, etc). He visto el modulo de paypal también pero es que me parecen excesivas las comisiones si vas a vender productos no muy caros ya que los 0,35€ no te los quita nadie.. Podríais recomendarme algún modulo que permita pagar con tarjeta y que no tenga comisiones muy altas? He visto que hay un modulo de la Caixa, pero no se si se permiten todo tipo de tarjetas ni como van las comisiones ni nada.. si alguien lo a utilizado y me informa un poco sobre este modulo se lo agradeceria. Saludos.
  5. Hello, I'm trying to add the left column to the product's page (when you see te information of a product, photos, etc) but i don't know how to do it. I only see the column in the category page but not in all single product. Anyone knows how can i do that? Info of my store: Prestashopt 1.6.9 Theme: default 1.6 Module left column: default Thanks!
  6. i put this at the en of public_html/tienda/themes/default-bootstrap/js/global.js: $('.sf-menu li').each(function(i,j) { $(this).addClass('yourClass'+i); }); and on the public_html/tienda/themes/default-bootstrap/css/modules/blocktopmenu/css/superfish-modified.css I added this at the end: .yourClass1 a { color:red: } .yourClass2 a { color:red: } But nothing happens in the menu..
  7. Thanks i'm going to try it. This: .yourClass1 a { background:red: } I have to put in global.css? or in another css?
  8. Only menu items, y don't have any subcategorie because the items redirect to specific url's and no to categories.
  9. I use 1.6.9 and the default theme and module. I have it on localhost so i can´t share it at the moment..
  10. Hola! He hecho un pequeño script php para actualizar el estado del producto, vi que en la table "ps_product" cada producto tiene un atributo llamado "active" si es 0 el producto esta desactivado y si es 1 esta activado. Bueno pues el script lo que hace es le doy el id del producto y me lo cambia a 0 o 1, este funciona correctamente ya que voy a la base de datos y se ha cambiado. Pero en la web no cambia nada, por ejemplo si desactivo un producto (lo pongo a 0) en la base de datos sale como desactivado pero en la web tanto en el front como en el back el producto me sigue apareciendo activo. Supongo que sera algún tema de cache o algo por el estilo? He intentado hacerlo manual: Parametros Avanzados > Rendimiento y en Smarty marcando forzar compilación. Vi en internet que se hacia asi no se si estare en lo cierto. Pero me sigue aparenciendo el producto activo en la web y en la base de datos no. Como podria limpiar la cache en el script? o alomejor no es eso y es otra cosa que estoy haciendo mal.. El script es este: <?php require('RUTA_DE_MI_TIENDA/config/config.inc.php'); // Activar producto $actv_prod1_id = 11; // desactivar producto anterior $des_prod1_id = 9; // act/ desc productos $sqlActv1 = "UPDATE `ps_product` SET `active` = '1' WHERE `ps_product`.`id_product` = $actv_prod1_id"; $sqlDes1 = "UPDATE `ps_product` SET `active` = '0' WHERE `ps_product`.`id_product` = $des_prod1_id"; Db::getInstance()->execute($sqlActv1); Db::getInstance()->execute($sqlDes1); A ver si alguien me puede ayudar.. Gracias!
  11. Hello, I use the block top menu in my shop, and I have 6 items that redirect to a specific link. I change all the text color of all the items to orange, but i want to change the color of all of the single items. For example: item one color blue, item two color green, etc. I want to change the text color and also the background color o every item if it's posible, how i can do that? Thanks! and sorry for my bad english..
  12. Hello, Is use the deafult module of horitzontal menu in my shop. Where I have the diferentes categories with the respective url. But the first item of the menu is "Home" that goes to the principal page of my shop. How can I do to change the word "Home" to a png icon that i have uploaded? is posible with the default menu module? Thanks!
×
×
  • Create New...