Jump to content

Juanan13

Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Location
    Spain
  • Activity
    Freelancer

Recent Profile Visitors

1,911,499 profile views

Juanan13's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Mi versión de Prestashop es 1.6.0.14 Tenía el mismo problema y lo he resuelto reemplazando en themes/{your theme}/js/autoload/15-jquery.uniform-modified.js en la línea 1075 en mi caso, suele estar al final del archivo: $(window).load(function () { $("select.form-control,input[type=checkbox]:not(.comparator), input[type=radio],input#id_carrier2, input[type=file]").uniform(); }); // refresh uniform selects on document width change $(window).resize( function () { $.uniform.update("select.form-control, input[type=file]"); } ); Por esto: if (typeof isMobile != 'undefined' && !isMobile){ $(window).load(function () { $("select.form-control,input[type=checkbox]:not(.comparator), input[type=radio],input#id_carrier2, input[type=file]").uniform(); }); // refresh uniform selects on document width change $(window).resize( function () { $.uniform.update("select.form-control, input[type=file]"); } ); } No olvidéis hacer una copia de seguridad del archivo antes de hacer cualquier modificación sobre el mismo.
  2. My version of Prestashop is 1.6.0.14 I had the same problem, but I've solved replacing in the themes/{your theme}/js/autoload/15-jquery.uniform-modified.js approximately on line 1075, on the end of the file: $(window).load(function () { $("select.form-control,input[type=checkbox]:not(.comparator), input[type=radio],input#id_carrier2, input[type=file]").uniform(); }); // refresh uniform selects on document width change $(window).resize( function () { $.uniform.update("select.form-control, input[type=file]"); } ); For this: if (typeof isMobile != 'undefined' && !isMobile){ $(window).load(function () { $("select.form-control,input[type=checkbox]:not(.comparator), input[type=radio],input#id_carrier2, input[type=file]").uniform(); }); // refresh uniform selects on document width change $(window).resize( function () { $.uniform.update("select.form-control, input[type=file]"); } ); } Don't forget to back up the file before making any change to it.
  3. Merci Vom, problème résolu dans la version 1.5.5 était la même Désolé pour mon français. Albacete - Espagne
  4. Con la versión Prestashop 1.5.3.1, también tenía este problema y se ha solucionado de esta forma. Gracias.
  5. Coyoteman, Iagoa, quizás este post os ayude. En la versión 1.5.x la línea de comando cambia pero lo único que hay que hacer es lo mismo. Os dejo el enlace: http://www.prestashop.com/forums... Espero que os sea de ayuda. Saludos.
×
×
  • Create New...