Unplowed Posted February 12, 2021 Share Posted February 12, 2021 (edited) Bonjour, A tout hasard, sur Presta 1.7, n'existe-t-il pas une solution pour désactiver le zoom automatique sur les photos produits ? C'est assez désagréable. A priori c'était une option désactivable sur Presta 1.6, mais plus sur 1.7. Quelle régression... J'ai recherché un peu sur le net mais... Je n'ai rien trouvé de concret. Merci de votre aide. Version Presta: 1.7.7.1 Theme: Drama 3 (Posthemes) Hébergeur: Ionos Edited March 9, 2021 by Unplowed SOLVED (see edit history) Link to comment Share on other sites More sharing options...
Remy FRK Corp Posted February 12, 2021 Share Posted February 12, 2021 Bonjour. Ce zoom ne serait il pas fourni avec votre thème ? parce que nativement sur 1.7 il faut cliquer pour zoomé c'est balo... Link to comment Share on other sites More sharing options...
Unplowed Posted February 12, 2021 Author Share Posted February 12, 2021 En effet, c'est balo 😅 Je pensais que c'était en natif... Puisqu'en recherchant sur le net d'autres personnes s'en plaignaient. Du coup il faut que j'explore le code du thème pour désactiver cette affreuse fonction.. Merci. Link to comment Share on other sites More sharing options...
Remy FRK Corp Posted February 12, 2021 Share Posted February 12, 2021 (edited) désolé connaissant pas votre theme je ne serais dire précisément où. Edited February 12, 2021 by Remy FRK Corp (see edit history) Link to comment Share on other sites More sharing options...
Unplowed Posted February 12, 2021 Author Share Posted February 12, 2021 (edited) J'ai finalement trouvé en quelques minutes. Si toutefois quelqu'un souhaite désactiver cette fonctionnalité sur cette même série de thème (Posthemes Drama) la solution est: /themes/(nom_du_theme)/assets/js et le nom du fichier est "custom.js". Recherchez "easyzoom" et supprimez toute cette partie (perso, je l'ai mise en "commentaire"). Le code à supprimer (ou mettre en commentaire) est celui-ci: /*! * @name easyzoom * @author <> * @modified Thursday, November 22nd, 2018 * @version 2.5.2 */ /!* !function(t,e){"use strict";"function"==typeof define&&define.amd?define(["jquery"],function(t){e(t)}):"object"==typeof module&&module.exports?module.exports=t.EasyZoom=e(require("jquery")):t.EasyZoom=e(t.jQuery)}(this,function(i){"use strict";var c,d,l,p,u,f,o={loadingNotice:"Loading image",errorNotice:"The image could not be loaded",errorDuration:2500,linkAttribute:"href",preventClicks:!0,beforeShow:i.noop,beforeHide:i.noop,onShow:i.noop,onHide:i.noop,onMove:i.noop};function s(t,e){this.$target=i(t),this.opts=i.extend({},o,e,this.$target.data()),void 0===this.isOpen&&this._init()}return s.prototype._init=function(){this.$link=this.$target.find("a"),this.$image=this.$target.find("img"),this.$flyout=i('<div class="easyzoom-flyout" />'),this.$notice=i('<div class="easyzoom-notice" />'),this.$target.on({"mousemove.easyzoom touchmove.easyzoom":i.proxy(this._onMove,this),"mouseleave.easyzoom touchend.easyzoom":i.proxy(this._onLeave,this),"mouseenter.easyzoom touchstart.easyzoom":i.proxy(this._onEnter,this)}),this.opts.preventClicks&&this.$target.on("click.easyzoom",function(t){t.preventDefault()})},s.prototype.show=function(t,e){var o=this;if(!1!==this.opts.beforeShow.call(this)){if(!this.isReady)return this._loadImage(this.$link.attr(this.opts.linkAttribute),function(){!o.isMouseOver&&e||o.show(t)});this.$target.append(this.$flyout);var i=this.$target.outerWidth(),s=this.$target.outerHeight(),h=this.$flyout.width(),n=this.$flyout.height(),a=this.$zoom.width(),r=this.$zoom.height();(c=a-h)<0&&(c=0),(d=r-n)<0&&(d=0),l=c/i,p=d/s,this.isOpen=!0,this.opts.onShow.call(this),t&&this._move(t)}},s.prototype._onEnter=function(t){var e=t.originalEvent.touches;this.isMouseOver=!0,e&&1!=e.length||(t.preventDefault(),this.show(t,!0))},s.prototype._onMove=function(t){this.isOpen&&(t.preventDefault(),this._move(t))},s.prototype._onLeave=function(){this.isMouseOver=!1,this.isOpen&&this.hide()},s.prototype._onLoad=function(t){t.currentTarget.width&&(this.isReady=!0,this.$notice.detach(),this.$flyout.html(this.$zoom),this.$target.removeClass("is-loading").addClass("is-ready"),t.data.call&&t.data())},s.prototype._onError=function(){var t=this;this.$notice.text(this.opts.errorNotice),this.$target.removeClass("is-loading").addClass("is-error"),this.detachNotice=setTimeout(function(){t.$notice.detach(),t.detachNotice=null},this.opts.errorDuration)},s.prototype._loadImage=function(t,e){var o=new Image;this.$target.addClass("is-loading").append(this.$notice.text(this.opts.loadingNotice)),this.$zoom=i(o).on("error",i.proxy(this._onError,this)).on("load",e,i.proxy(this._onLoad,this)),o.style.position="absolute",o.src=t},s.prototype._move=function(t){if(0===t.type.indexOf("touch")){var e=t.touches||t.originalEvent.touches;u=e[0].pageX,f=e[0].pageY}else u=t.pageX||u,f=t.pageY||f;var o=this.$target.offset(),i=f-o.top,s=u-o.left,h=Math.ceil(i*p),n=Math.ceil(s*l);if(n<0||h<0||c<n||d<h)this.hide();else{var a=-1*h,r=-1*n;this.$zoom.css({top:a,left:r}),this.opts.onMove.call(this,a,r)}},s.prototype.hide=function(){this.isOpen&&!1!==this.opts.beforeHide.call(this)&&(this.$flyout.detach(),this.isOpen=!1,this.opts.onHide.call(this))},s.prototype.swap=function(t,e,o){this.hide(),this.isReady=!1,this.detachNotice&&clearTimeout(this.detachNotice),this.$notice.parent().length&&this.$notice.detach(),this.$target.removeClass("is-loading is-ready is-error"),this.$image.attr({src:t,srcset:i.isArray(o)?o.join():o}),this.$link.attr(this.opts.linkAttribute,e)},s.prototype.teardown=function(){this.hide(),this.$target.off(".easyzoom").removeClass("is-loading is-ready is-error"),this.detachNotice&&clearTimeout(this.detachNotice),delete this.$link,delete this.$zoom,delete this.$image,delete this.$notice,delete this.$flyout,delete this.isOpen,delete this.isReady},i.fn.easyZoom=function(e){return this.each(function(){var t=i.data(this,"easyZoom");t?void 0===t.isOpen&&t._init():i.data(this,"easyZoom",new s(this,e))})},s}); */ Edited February 13, 2021 by Unplowed (see edit history) 1 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now