• Resolved crazygo

    (@crazygo)


    Hi there and thanks for your plugin,

    I would like to display on my product page the name of the best bidder below the price, not the full bids history.

    Is it possible ?

    Thanks a lot

Viewing 4 replies - 1 through 4 (of 4 total)
  • payalrajyaguru

    (@payalrajyaguru)

    Hello,

    We have developed the Ultimate Auction for Woocommerce plugin based on the Woocommerce plugin. Many bidders have placed bids on the auction products by logging/registering on the admin site. The plugin will display all the bidder’s names and bid values on the product page at the bid history table. 

    We have read your query. You want to display the best bidder below the price in the bid history table and not the full bidder list. Currently, this functionality is not available in the auction plugin. It?will display all the bidder lists by default. Do you want to display only one bidder and its bid value which?is placed at last(highest bidder)? Let us know. It can be done via custom CSS/JavaScript. First please confirm your requirements. After that, we can test it by adding a custom CSS/JavaScript. If it is?successful, we will send it to you.

    Thank You

    Thread Starter crazygo

    (@crazygo)

    Hello and thanks for your time !

    Yes i would like to display the name of the best bidder below the price of the current bid, not in the bid history table (hidden on my website).

    Here is a example of my current design

    https://i.postimg.cc/286czHzd/369889053-1068914434284062-1208622833184688004-n.jpg

    And here what i would like :

    https://i.postimg.cc/4N9cbtwk/2.png

    I hope it will help.

    Thanks again !

    payalrajyaguru

    (@payalrajyaguru)

    Hello,

    You want to display the highest bidder’s name on the product page as shown in the screenshot.

    Currently, the highest bidder’s name is displayed in the bid history table. If you want to display it above the countdown timer, you need to add custom code to the auction plugin.

    You can display the highest bidder name using the below custom code.

    <?php
    
    global $woocommerce, $product, $post;
    $current_bidder = $product->get_woo_ua_auction_current_bider();
    
    ?>
    
    <div>
    <strong>
    <?php _e('Best Bidder Name:', 'ultimate-woocommerce-auction'); ?>
    </strong>
    <span>
    <?php  echo esc_attr(uwa_user_display_name($current_bidder));  ?>
    </span>
    </div>

    The below plugin file is used to display the auction data on the front end. You need to add the code where you want to display the bidder name to the below plugin file accordingly.

    Ultimate auction for Woocommerce -> Templates -> Woocommerce -> single-product -> uwa-bid.php

    You can override the uwa-bid.php template file to the active theme of your site and add the custom code there. So, when you update the auction plugin, the custom code is not removed.

    If you are not able to add the code properly to your site and you need help with it, please contact us here. We will help you.

    Thank You

    Plugin Author Nitesh

    (@nitesh_singh)

    @crazygo,

    We have replied to your initial query. We are marking this query as resolved.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Name of best bidder only’ is closed to new replies.