Viewing 8 posts - 31 through 38 (of 38 total)
  • Author
    Posts
  • #1116055

    Hi. Apologies, ssl certificate error has been fixed.

    #1116502

    Hi,
    I believe that I have it sorted out now, I placed this function in your child theme functions.php:

    function custom_not_script(){
      ?>
      <script>
    (function ($) { 
    $(window).load(function() {
      if ($("body").hasClass("woocommerce-account") || $("body").hasClass("single-product")) {    
        $('.auction-time-countdown').css({'opacity':'1'});
        $('.time-left').css({'opacity':'1'});
    } 
      else {
        $('.auction-time-countdown').css({'opacity':'0'});
        $('.time-left').css({'opacity':'0'});
    }
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_not_script');
    

    this will hide the countdown and time left unless it’s the account page or the product page
    please clear your browser cache and check.

    Best regards,
    Mike

    #1116703

    Thanks Mike for great support, it does look a lot better now. This space where timer use to be and now is hidden( in picture marked with yellow) can it be reduced/removed pls.

    #1116824

    Hi,

    Add this to quick css:

    .auction-time-countdown.hasCountdown{
    display:none!important;
    }

    Best regards,
    Jordan Shannon

    #1116946

    Hi! Im afraid this above given quick css does removes that empty space.

    #1117320

    Hi,

    Thanks for the update.

    Are you referring to the “Winning” badge? You can use the following css code to adjust its position.

    span.winning {
        top: -50px;
    }

    Best regards,
    Ismael

    #1117481

    Hi Ismael. No its just that space is too wide between where is written current bid and location of bid now button. Pls check link in private where i marked with red X this space im referring to.

    #1117752

    Hi,

    I see. That’s the minimum height of the product info container. If you want to adjust it, use this css code.

    #top .inner_product_header {
        min-height: 60px;
    }
    

    Default minimum height value is 91px. For additional inquiries, please open a new thread.

    Best regards,
    Ismael

Viewing 8 posts - 31 through 38 (of 38 total)
  • You must be logged in to reply to this topic.