Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #390551

    Coen L
    Participant

    Hi,

    When I change a Woocommerce product variation the old price is not cleared and the new price is put over the old price: see http://metaquip.nl/en/product/laser-cutting-engraving-professional/
    Select working area: 1000 x 600mm and then change laserpower from 80W to 100W.

    Can you help me?

    Regards,
    Coen

    #390622

    Paul R
    Moderator

    Hi Coen,

    I am sorry but I can’t replicate the issue on my end.

    Can you send us a screenshot on how it looks in your end.

    Thanks

    #394241

    Coen L
    Participant

    See capture.png.

    Browser: Chrome, another PC with Chrome showed the same problem.
    MS Edge, IE, Firefox do not show the problem.

    Seems to be Chrome specific.

    #394470

    Rue Nel
    Moderator

    Hello There,

    I am another staff checking on your site. Still I can not replicate the issue on my end. I am using Chrome version 44 in Mac OSX. Would mind telling us your operating system and the version of your Chrome?

    Thank you.

    #394807

    Coen L
    Participant

    Windows 10 (including all updates available)
    Chrome Version 45.0.2454.93 m

    Put laserpower on 100W, change working area from 1500 x 900mm to 1200 x 900mm then the problem occurs (on my end).

    Regards,
    Coen

    #395021

    Zeshan
    Member

    Hi Coen,

    Thanks for writing in!

    Please review this thread: https://productforums.google.com/forum/#!msg/chrome/3k4OvCa54lA/Bgu0dgZbqyQJ

    Thanks!

    #396716

    Coen L
    Participant

    Hi,

    Did all 3 steps mentioned as indeed the problem seems the same: it did not resolve the problem. As the same problem can easily be reproduced on other PCs I personally dont think it has to do with the browsing history.

    Regards,
    Coen

    #396730

    AlRocker
    Participant

    Hi guys, I think that Coen and I are having the same problem. It appears to only happen in Google Chrome, and I also tried all three steps in the link that you mentioned above. It only happens on a few products, some work flawlessly and others overlap prices. I’ll include a screenshot of what I see.

    #396871

    Christian
    Moderator

    I’ve setup a variable product on my test site and this does not happen. Please give us access to your WordPress admin and FTP. But before that, please disable all third party plugins and scripts and ensure that everything is up to date.

    Thanks.

    #396896

    AlRocker
    Participant
    This reply has been marked as private.
    #397047

    Rad
    Moderator

    Hi there,

    Are you on MAC too? That’s weird, it’s browser’s rendering glitch. Apparently, during re-render, the previous render isn’t cleared by the browser. And it’s nothing to do with any theme or plugin.

    Please add this code at Admin > Appearance > Customizer > Custom > Javascript

    jQuery( function( $ ) {
    
    $('.variations select').live('change', function() {
    
    $('.single_variation .amount').removeClass('amount').hide(0);
    
    setTimeout( function() { $('.single_variation .price > span').addClass('amount').show(0); }, 100 );
    
    } );
    
    } );

    This ensure the the price is displayed 100 milliseconds late. At least this will give the render a 100ms interval to clear themselves.

    Cheers!

    #398180

    AlRocker
    Participant

    Alright, thank you so much that fixed the problem.

    #398216

    Prasant Rai
    Moderator

    You are most welcome 🙂 .

    #520873

    Coen L
    Participant

    thanks! Works 😉

    #533278

    Prasant Rai
    Moderator

    You are most welcome 🙂 .