payalrajyaguru
Forum Replies Created
-
Hello,
Page is not scrolling down into your site. Your WordPress site has theme and many plugins installed, it might be possible that due to some css/javascript conflict on your site, this error is happening. Can we know the name of theme and the list of Active Plugins into your site?
Thanks
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] One Specific Auction on PageHello,
Ultimate WordPress Auction Plugin has only one shortcode “[wdm_auction_listing]”. It shows a list of all the auctions. There is no parameter in shortcode that can display limited auction.
Thank You
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Can’t delete a bidHello,
It looks like you are using Ultimate Auction for WooCommerce plugin into your site. In this plugin Delete bid button is not working. We will fix it in next release of plugin update.
Thank You
Hello,
1. The winning email is sent when the user becomes the winner. It includes product name, winning bid value and pay now button. Payment can be made by clicking on “Pay Now” button.
2. When admin tries to delete a bid from the products menu -> Edit product -> Bids History table, it does not work. It is plugin issue. We’ll fix it in the next plugin update.
Thank You
Hello,
1. We tested your query with Divi theme. If the setting(show expired auctions on shop page) is disabled, the expired auctions does not show up on the shop page. This setting works properly. You are using using Divi child theme and the Divi builder. Please check theme options into your site.
2. could you please share WooCommerce System Report? It can be found – WP Admin > WooCommerce > Status > Get System Report. It would be really helpful to solve your problem.
Thank You
Hello,
You are using Ultimate WooCommerce Auction Pro plugin into your site. Please turn off “Offline Dealing for Buyer & Seller” addon into auction plugin. The “Buy Now” button will come back in product detail page.
This forum is meant for free plugin queries. Since you are using PRO plugin, please post your questions here.
Thank You
Hello,
1.The product URL you shared has expired. Please create a test auction product into your site and share url of live product.
2. could you please share WooCommerce System Report? It can be found – WP Admin > WooCommerce > Status > Get System Report. It would be really helpful to solve your problem.
Thank You
Hello,
1. We have tested the bid functionality of plugin. It works fine. Users must login / register on the My Account page to place bids. Your wordpress site has theme and many plugins installed, it might be possible that due to some css/javascript conflict on your site, this error is happening.
could you please share WooCommerce System Report? It can be found – WP Admin > WooCommerce > Status > Get System Report. It would be really helpful to solve your problem.
2. Watchlist auctions can be found on my account page -> my auctions watchlist menu. If this page can not be found then you need to save permalinks from admin side. Go to Admin dashboard -> Settings -> Permalink -> click “Save Changes” button. It will work.
Thank You
Hello,
Could you please share answers for following questions so that it helps us understand the issue better and replicate it:
1. Could you please share WooCommerce System Report? It can be found – WP Admin > WooCommerce > Status > Get System Report.
2. Have you used any plugin for checkout page customization?
3. May we also request you which theme are you using? Is it free? Please share where can we download it from?
Thank You
Hello,
We test auction listing page with Hello Elementor theme on mobile screen. The design of the auction listing page is appropriate. There will be other CSS available into your site. it might be possible that due to some CSS conflict on your site, this error is happening. If it is possible for you to share auction listing page URL of your site, We can provide you suitable CSS for your site.
Thank you
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Customisation and emailHello,
Go to ultimate-auction -> email-template.php. This file includes email templates for bidder, auction winner, sellers and out bidder. You can customize as per your requirement. It will change email content.
Thank You
Hello,
You can display countdown timer and ending date of auction product on shop page by override template file.
Copy template file from
Woocommerce plugin -> templates -> content-product.php
and paste it into below path(Create folder structure as follows.)
Root folder of active theme(Astra) -> woocommerce -> content-product.php. Add below code in this file after “woocommerce_after_shop_loop_item_title” hook and save it. It will display timer on shop page.<?php
global $post, $product, $woocommerce, $wpdb;
$product_id = $product->get_id();if(($product->is_woo_ua_closed() === FALSE ) and ($product->is_woo_ua_started() === TRUE )) : ?>
<div class=”uwa_auction_time” id=”uwa_auction_countdown”>
<?php _e(‘Time Left:’, ‘woo_ua’); ?>
<div class=”uwa-main-auction-product uwa_auction_product_countdown” data-time=” <?php echo $product->get_woo_ua_remaining_seconds() ?> ” data-auction-id=” <?php
echo esc_attr( $product_id ); ?> ” data-format=” <?php echo get_option(
‘woo_ua_auctions_countdown_format’ ) ?> “>
</div>
</div>
<p class=”uwa_auction_end_time”>
<?php _e(‘Ending On:’, ‘woo_ua’); ?>
<?php echo date_i18n( get_option( ‘date_format’ ), strtotime( $product->get_woo_ua_auctions_end_time() )); ?>
<?php echo date_i18n( get_option( ‘time_format’ ), strtotime( $product->get_woo_ua_auctions_end_time() )); ?>
</p><?php endif; ?>
Thank You
- This reply was modified 4 years, 1 month ago by payalrajyaguru.
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] Override Template: shop pageHello,
If you want to change auction listing page then you need to change code of plugin file. You can edit auctions-listing-with-attributes.php file. It will change layout of auction list page.
Thank you
- This reply was modified 4 years, 2 months ago by payalrajyaguru.
Forum: Plugins
In reply to: [Ultimate Wordpress Auction Plugin] ‘Place bid’ button not workingHello,
We test your query into your site. Looks like ‘place bid’ button is working. Bid placed successfully into your site. Please review below auction.
https://www.row4cancer.nl/veilingen/?ult_auc_id=195Thank You
Hello,
1. If you want the user to be able to buy the product without register/login, you need to do below setting in woocommerce. It will allow users to buy and checkout product without account login.
Admin dashboard -> Woocommerce -> Settings -> Accounts & Privacy -> Check option “Allow customers to place orders without an account” and save changes.
2. If the user wants to place a bid on auction product, the user must register/login on my account page. User can not place a bid without register/login. This is the default functionality of the plugin.
Thank You