Forum Replies Created

Viewing 15 replies - 241 through 255 (of 256 total)
  • Hello,

    When a user tries to place a bid without login, It redirects to the default login page of WordPress. “&wdm-bid-val=30” It will come at the end of url. It means you enter “30” value in bid input box. After user login, page is redirected to the auction page with bid value automatically. This function works properly in the plugin.

    You have used custom login page into your site. If you want to remove “&wdm-bid-val=30” from url, you need to change code into plugin file.
    Go to plugin folder -> ajax-actions -> place-bid.php file. Change code as per below instruction and save changes. It will work into your site.

    From
    var new_url = redirect_url+ “&wdm-bid-val=” + bid_val;

    To
    var new_url = redirect_url;

    Thank You

    Hello,

    The Ultimate WordPress Auction Plugin does not have the functionality to generate reports. If you want to add a PDF report view button, you need to add custom functionality to the plugin code. You can add a button to the plugin’s auction-shortcode.php file. It will display in single auction page.

    Thank You

    Hello,

    If you want to display bidder name to all users, you have to replace code in below path.
    ultimate woocommerce auction -> templates -> single-product -> tabs -> uwa-bids-history.php

    from
    <td class=”bid_username”><?php echo uwa_user_display_name($history_value->userid);?></td>

    to
    <td class=”bid_username”><?php echo get_userdata($history_value->userid)->display_name;?></td>

    Thank You

    Hello,

    If you want to change color of bid input area. Please add below CSS in style.css file of active theme. It will change color of bid input box. You can change color code as per your requirement.

    .uwa_auction_form #uwa_bid_value {
    background-color: #fff;
    }

    Thank You

    Hello,

    Plugin displays “emails are not valid!”. As you said, this problem only happened to some bidders. When bidder entered wrong email(format), plugin will display alert box of invalid email. Bidder has to enter the correct email id. so, the bid will be placed.
    We tested in our local server, it works fine. Please create test auction into your site. could you inform bidder email id and test auction product url? So, we can check it.

    Thank You

    Hello,

    This functionality is not available in the plugin. For this you have to do custom functionality in plugin. In ultimate woocommerce auction pro – business plugin there is a functionality to apply premium charges on winning bid value. You can add percentage charges or flat rate on winning price of product.

    Thank You

    Hello,

    Email resend is Pro plugin feature. If you are using pro plugin, you need to set cronjob url for send email. For resend payment reminder email, you need to set specific payment reminder cronjob. Please review document for set cronjob url on hosting panel.

    Thank You

    Hello,

    You can translate ultimate wordpress auction plugin into your native language using POEdit. If you purchase ultimate woocommerce auction pro plugin, you can translate language using ‘Loco Translate’ or ‘WPML’ plugin. Please review document for translate pro plugin language.

    Ultimate woocommerce auction pro plugin integrates with below multi-vendor plugins.
    -> WCFM Marketplace by WC Lovers (FREE product)
    -> WooCommerce Product Vendors (Paid product)
    -> Dokan Lite (Free)
    Integrating auction pro plugin with above plugins, you can enable vendor options into your site. Vendor can create auction products into your site and sell it. Please review document for vendor auction.

    Thank You

    Hello,

    We have provided confirm box for bid conformation in the plugin. There is no option in the plugin to change it. If you want to change modal, You need to customize the plugin functionality.

    Thank You

    Hello,

    Hello,

    1. If you create simple product, “Add to cart” button will display on product detail page. When you create auction product, “Bid Now” button will display on product detail page. We checked into your site and test “placed bid” and “Buy Now” functionality. When enter bid value in input field and click place bid button, bid placed successfully. It does not add the product directly to the shopping cart as per your problem. Also provide you scrrenshot for placed bid. When you click “Buy Now” button, It will add product to your cart directly. This is how the plugin works. So, both “placed bid” and “Buy Now” button work properly.
    https://prnt.sc/vodlht

    2. You can change plugin language into your native language using translation plugin like Loco translate and WPML. Please review below document for translate Ultimate WooCommerce Auction plugin language. You can change language of any plugin or theme using translation plugin.
    https://docs.auctionplugin.net/article/94-how-to-translate-plugin-in-your-native-language
    After doing all steps for translation, Go to settings -> General -> Site Language -> Select language and save it. It will change all text and strings which is integrated in WordPress.

    3. When you change site language to Arabic or Hebrew, “Place bid” will automatically goes to left site. This structure comes from WordPress by default. You can change it using below CSS. We provide you possible CSS to change it. Add this CSS in style.css file of active theme into your site.

    button#placebidbutton {
    float: right;
    }
    .quantity.buttons_added {
    float: left!important;
    }
    form.uwa_auction_form.cart {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-left: 32%!important;
    }
    .uwa_inc_price_hint {
    padding: 10px 0 0px 13px!important;
    }
    .single-product div.product form.cart .quantity {
    margin-right: .875em;
    }

    Hello,

    In database wp_woo_ua_auction_log table is empty because you have reinstalled the auction plugin. That’s why ‘wp_woo_ua_auction_log’ table is recreate. Did you check with place bid after re-installing the plugin? After re-installing plugin place bid on auction product and check “Bidders Name / Bid / Time” tab in auctions menu. If “Bidders Name / Bid / Time” tab doesn’t display data, please share System status report and live auction product detail page url. You can get system status report from WP Admin > WooCommerce > Status.

    Thank You

    Hello,

    1. If reserve price has not been met on auction product, no one becomes a winner. To be a winner, User need to add a bid value more than the reserve price.

    2. If you don’t want product to have a reserve price, you can set opening price = reserve price. Second option is that leave blank field of reserve price. Auction product will work without reserve price.

    Thank You

    Hello,

    If you want to add apostrophe in product name in email topic, You need to customize the template file of the plugin. Below is an example for placed bid email. Go to below path and replace code on line no.194
    Plugin folder -> email-template.php

    From
    $adm_sub = “[“.get_bloginfo(‘name’).”] “.__(“A bidder has placed a bid on the product”, “wdm-ultimate-auction”).” – “.$auc_name;

    To
    $adm_sub = “[“.get_bloginfo(‘name’).”] “.__(“A bidder has placed a bid on the product”, “wdm-ultimate-auction”).” – ‘”.$auc_name.” ‘ “;

    If you want to change topic of any email, you have to change code as above in email-template.php file.

    Thank You

    Hello,

    Proxy bidding functionality is not included in ultimate woocommerce auction free plugin.
    If you are using ultimate woocommerce auction pro plugin, add below css into your site. It will hide “auto” column from bid table on product detail page.

    .auction-history-table tr th:last-child {
    display: none!important;
    }

    Thank You

    Hello,

    If you want to display bidder name to all users, you have to replace code in below path.
    ultimate woocommerce auction -> templates -> single-product -> tabs -> uwa-bids-history.php

    from
    <td class=”bid_username”><?php echo uwa_user_display_name($history_value->userid);?></td>

    to
    <td class=”bid_username”><?php echo get_userdata($history_value->userid)->display_name;?></td>

    Thank You

Viewing 15 replies - 241 through 255 (of 256 total)