Jump to content

sete

Members
  • Posts

    37
  • Joined

  • Last visited

sete's Achievements

Newbie

Newbie (1/14)

1

Reputation

1

Community Answers

  1. For anyone with the same problem, I got an error like: es/index.php?controller=order-detail&id_order=9&ajax=true It's a url error. I solved it by disabling and enabling the rewrite again.
  2. Hi, I solve the issue of this way: add 'meta_keywords' field on classes/Manufacturer.php, getManufacturers function: Before: public static function getManufacturers($get_nb_products = false, $id_lang = 0, $active = true, $p = false, $n = false, $all_group = false, $group_by = false) { if (!$id_lang) $id_lang = (int)Configuration::get('PS_LANG_DEFAULT'); if (!Group::isFeatureActive()) $all_group = true; $manufacturers = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT m.*, ml.`description`, ml.`short_description` FROM `'._DB_PREFIX_.'manufacturer` m '.Shop::addSqlAssociation('manufacturer', 'm').' INNER JOIN `'._DB_PREFIX_.'manufacturer_lang` ml ON (m.`id_manufacturer` = ml.`id_manufacturer` AND ml.`id_lang` = '.(int)$id_lang.') '.($active ? 'WHERE m.`active` = 1' : '') .($group_by ? ' GROUP BY m.`id_manufacturer`' : '' ).' ORDER BY m.`name` ASC '.($p ? ' LIMIT '.(((int)$p - 1) * (int)$n).','.(int)$n : '')); if ($manufacturers === false) return false; After: public static function getManufacturers($get_nb_products = false, $id_lang = 0, $active = true, $p = false, $n = false, $all_group = false, $group_by = false) { if (!$id_lang) $id_lang = (int)Configuration::get('PS_LANG_DEFAULT'); if (!Group::isFeatureActive()) $all_group = true; $manufacturers = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT m.*, ml.`description`, ml.`short_description`, ml.`meta_keywords` FROM `'._DB_PREFIX_.'manufacturer` m '.Shop::addSqlAssociation('manufacturer', 'm').' INNER JOIN `'._DB_PREFIX_.'manufacturer_lang` ml ON (m.`id_manufacturer` = ml.`id_manufacturer` AND ml.`id_lang` = '.(int)$id_lang.') '.($active ? 'WHERE m.`active` = 1' : '') .($group_by ? ' GROUP BY m.`id_manufacturer`' : '' ).' ORDER BY m.`name` ASC '.($p ? ' LIMIT '.(((int)$p - 1) * (int)$n).','.(int)$n : '')); if ($manufacturers === false) return false; and call this one in tpl file: {$manufacturer.meta_keywords}
  3. In firefox too. I am not using cloudfare. Thanks for your support
  4. With cache disabled is ok. How I can fix this? I think this is not a chrome problem
  5. Hi, A few days ago I saw that when I access the backend to view orders, edit a product or make any changes, this change is not visible until I updated the page with F5. For example: I edit the order status to "Cancelled", but in order list still has the "Preparation in progress". If I go into another tab, such as "Customers" and orders again, still with the status "Preparation in progress". However, to refresh the page by pressing F5 correctly listed as "Cancelled". I have cleared all cache, what is happening? Using Prestashop 1.5.6
  6. No, lo siento, no uso la pasarela integral. Sospecho que puede tener que ver con las cookies ya que me da problemas también a la hora de mostrar el nombre del cliente en la cabecera (a veces me muestra otro nombre aunque en Mi cuenta salen todos los datos bien).
  7. A mi me ha pasado lo mismo pero con cualquier correo que saliera de mi servidor (ventas, contacto, alertas). Sospecho que puede estar relacionado con la IP del servidor, ya que movi la tienda a otro que tenía y parece que van bien ya. También configuré el correo para que usara el servidor smtp del servidor en lugar de la función php. En el viejo no funcionó pero en el nuevo como te digo si que sirvió para volver a mandar y recibir correos.
  8. I have a VPS and I have access to the log directory. Where can I look at the log? I do not see any errors in / var / log / messages or / var / log / syslog
  9. Hello, lately I'm seeing that some orders correctly store data checkout, but I can not see the products of the order. So far only happened in some Paypal orders, but today it has also happened with an order on delivery. The shopping cart is careful. I have looked at the database and the order is registered in ps_orders but has no registration ps_orders_detail. What can be happening? Using version 1.5.6. Regards.
  10. Hola, últimamente estoy viendo que en algunos pedidos se guardan correctamente los datos de pago y envío, pero no logro ver los productos de dicho pedido. Hasta ahora sólo pasaba en algunos pedidos de Paypal, pero hoy ha ocurrido también con un pedido contra reembolso. El carro de la compra se guarda bien. He mirado la base de datos y el pedido está registrado en ps_orders pero no tiene ningún registro en ps_orders_detail. ¿Qué puede estar pasando? Uso la versión 1.5.6. Un saludo.
  11. sete

    consulta

    Te aconsejo hacer una redirección con el archivo .htaccess situado en la raiz de tu alojamiento, o directamente mover todo el contenido de /Tienda a la carpeta raiz.
  12. Hola, Estoy intentando realizar un vale de descuento para aplicar un porcentaje en los productos de una determinada categoría. He creado el vale descuento pero no veo la forma de limitarlo a una categoría si no es metiendo los productos uno a uno. Hay una opción para requerir productos de una determinada categoría, pero luego aplica el descuento a todo el pedido. ¿Sabéis si hay alguna forma de que el descuento sólo afecte a una categoría concreta aplicando vales descuento? Gracias
  13. He probado en el defines.inc a desactivar el debug: define('_PS_MODE_DEV_', false); pero sigo sin poder acceder.
  14. Hola, al intentar acceder a una tienda prestashop me sale el siguiente error: Strict Standards: Declaration of Customer::getByEmail() should be compatible with that of CustomerCore::getByEmail() in /home/et5354/public_html/prestashop/override/classes/Customer.php on line 140 Warning: Cannot modify header information - headers already sent by (output started at /home/et5354/public_html/prestashop/override/classes/Customer.php:140) in /home/et5354/public_html/prestashop/classes/controller/FrontController.php on line 639 Warning: Cannot modify header information - headers already sent by (output started at /home/et5354/public_html/prestashop/override/classes/Customer.php:140) in /home/et5354/public_html/prestashop/classes/controller/FrontController.php on line 640 Warning: Cannot modify header information - headers already sent by (output started at /home/et5354/public_html/prestashop/override/classes/Customer.php:140) in /home/et5354/public_html/prestashop/classes/Tools.php on line 130 La url es: http://www.modacaninayorkshirechihuahuas.com/prestashop/ He sustituido el Customer.php y el FrontController.php por los originales, pero nada. ¿Qué puedo hacer?
×
×
  • Create New...