Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all 102337 articles
Browse latest View live

Auto fill billing form in checkout page from logged in users’ data

$
0
0

Replies: 1

Hello,

I would like to ask if there is any way to fill the billing form automatically from user data, especially: first name, last name, phone number.

I used ultimate member plugin to user can register in my site, and I ask him for his first name, last name, email and phone number, as you can see:
Screenshot_2.png

but when he go to checkout page, there is only email field which filled, as you can see:
Screenshot_1.png

And as you can see, there is “Array” word in city field, I don’t know from where it came.

Any solution for that ?
Thank you.


Payment methods

$
0
0

Replies: 1

Hello,
I have a problem with wooCommerce. I need to add payement methods.
When i go to WooCommerce > Settings > Payement. in payement methods i don’t fond Cash on delivery method, bank transfer, etc. I found only PayPal.
Can you help me please ??

How to use with GAv4

$
0
0

Replies: 1

I have the pro version of the plugin.

When authenticating with GA I only see a list of my UA profiles.

With the upcoming sunset of UA I’d like to move over to GAv4.

How to handle this? Ideally I’d like to use GTM to load all tags and snippets. Dooes the plugin support this?

Prices showing incorrectly in Variant products with taxes

$
0
0

Replies: 1

The site is an online store, all product prices are set tax included, and in the shop the prices are shown without taxes, so the taxes are shown only in the cart. The thing is that with variants there is a DOUBLE tax reduction before showing the price in the store. For instance,
Non variant product has 20% tax, the price fed is 120 (100+ 20 from taxes) and it shows in store with a price of 100

A variant product has 20% tax, the price fed is 120 (100+ 20 from taxes) and it shows in store with a price of 83.33, and in the product page it shows as 83.33 in the top side of the product, but in the lower section, where you select the variant you want, it shows as it should, 100

Can you please help me with this issue?, I can provide pictures if you tell me where to send them.

Display unit of measure label twice using woocommerce measurement price calculat

$
0
0

Replies: 1

I´m using WooCommerce Measurement Price Calculator and getting this error:

`Fatal error:
Uncaught TypeError:

abs(): Argument #1 ($num) must be of type int|float, string given in

/wp-content
/plugins
/woocommerce-measurement-price-calculator
/includes
/admin
/post-types
/writepanels
/writepanel-product_data-calculator.php:1880

How can I install WooCommerce on a self-hosted WordPress site?

$
0
0

Replies: 1

Hi, we serve eCommerce sellers by providing storage for their inventory and we are trying to develop a free WooCommerce extension so that our sellers may be encouraged to use WooCommerce for their online stores. How can we set up a development WooCommerce shop to try out our development?

We have already installed WordPress locally. What is the next step?

We had followed the instructions to upload the plugin but it throws an error saying that the link has expired.

Can you share how we can resolve this?

Best Regards,
Edwin

automatically a free product to the cart depending on a particular product id?

$
0
0

Replies: 1

I am trying add a free product depending on some products added in the cart or not by the product ids. I found some code on depending on category and tried to change it in product id but I am not able to save it getting 403 Forbidden Access to this resource on the server is denied! error.

`/**
* Automatically adding the product to the cart.
*/
function aaptc_add_product_to_cart( $item_key, $product_id ) {

$product_ids = array( 5237, 5236 ); //
$product_id_check = false;

if ( ! WC()->cart->is_empty() ) {
// Loop though cart items
foreach(WC()->cart->get_cart() as $cart_item ) {
// Handling also variable products and their products variations
$cart_item_ids = array($cart_item[‘product_id’], $cart_item[‘variation_id’]);

// Handle a simple product Id (int or string) or an array of product Ids
if( ( is_array($product_ids) && array_intersect($product_ids, cart_item_ids) )
|| ( !is_array($product_ids) && in_array($product_ids, $cart_item_ids) ) )
$product_id_check = true;
}
}

if ( ! is_admin() && $product_id_check ) { // if front end and product is added to cart having category A or B or C.
$free_product_id = 5553; // Product Id of the free product which will get added to cart

WC()->cart->add_to_cart( $free_product_id,2 );
}

}
add_action( ‘woocommerce_add_to_cart’, ‘aaptc_add_product_to_cart’, 10, 2 );

Not able to save this code and run further, plz help.

No Download options on Woo commerce email after completion of order

$
0
0

Replies: 1

My downloadable product file type is fmp12(Filemaker), and once a user purchases a product, on the email which sends out on completion is not having any links to download, all those fields are left empty.
If I swap it with a pdf, I can see all the details. Could someone help me here?

I have edited functions.php to allow fmp12 file on media library, do I have to make more changes so that the same can be updated on the email as well?

  • This topic was modified 10 hours, 6 minutes ago by mdsebans.

Admin Ajax Calls Crashing my server.

$
0
0

Replies: 1

I’ve been trying to troubleshoot this with Bluehost Tech Support. I’ve been told it looks to have been due to a few sources, such as admin-ajax.php and wp-cron.php processes. I pasted some information below if this helps.

Any help resolving this would be appreciated.

Request count distribution per hour of the day:
                Hour:   22      Count:     393 / 100.00%

       Request count distribution per day of the week:
                 Day:        Thursday      Count:     393 / 100.00%

       Request count per hour:
                Hour:  05/May/2022:22      Count:     393 / 100.00%

       Top 10 Request Strings:
               Count:       18 / 04.58%     Request: "POST /?wc-ajax=get_refreshed_fragments HTTP/1.1"
               Count:       15 / 03.82%     Request: "HEAD / HTTP/1.1"
               Count:       14 / 03.56%     Request: "GET /wp-admin/ HTTP/1.1"
               Count:        6 / 01.53%     Request: "POST /?wc-ajax=get_variation HTTP/1.1"

Prices in Cart not updating with Quantity Change

$
0
0

Replies: 10

Hello!

Just trying to get some assistance with an issue I’ve found with the prices as displayed in the Cart.

We have installed the Advanced Calculations Plugin, allowing for us to generate more dynamic prices that, in our case, are dependent on field selection and quantities.

This generates a dynamic price per unit, which is applied to generate the total price.

However, when clicking “Add To Cart”, and navigating to the cart page, we run into an issue:

If the quantity is edited within the cart, then the price per unit no longer changes dynamically, and stays at the amount it was before.

The client can then choose to select that new quantity, with the incorrect pricing.

So, to summarise what I require fixing: The Cart page, when editing the quantity, should also edit the price per unit using whatever calculations are involved in the initial page.

Thanks for your time, please let us know if there are any issues.

(P.S.: I also have some images that I can demonstrate my issue more clearly with, but I cannot work out how to add them to this forum. Is there any way to do so?)

How to customize product selection in Woocommerce Product Bundles ??

$
0
0

Replies: 1

its a 2 meal box but comes with 2rotis which is by default added in bundle, so its showing Please choose 4 items. The min and max quantity is set to 4. I want this option to show Please choose 2 items (4-2) instead of 4. same with other quantity boxes, in 4 meal box, 4x rotis already added show its showing 8 items but it should show 8-4 = 4 items.
How can i achieve this?

  • This topic was modified 6 hours, 48 minutes ago by aakkirock.

Cart dropdown when adding product to cart

$
0
0

Replies: 0

Hi.

I just want to know how I can make the cart drop down when adding a product to it. Just like it does when you hover over it.

Kind regards
Youssef

Add to cart out of stock products

$
0
0

Replies: 1

Hi!

I have the following problem:
By default, when products are bulk-imported to WooCommerce with stock quantity=0, it show stock status “Out of stock” and it cannot be added to cart.

I would like to keep possibility to purchase “out of stock” products once they are imported.

Is there any code snippet to allow it, or lets say auto-change stock status by default from out of stock to Backorders?

Thank you!

Add Attributes Tab keeps loading

$
0
0

Replies: 2

Hi everyone.

Im having difficulty loading a product with attributes.

When clicking on add in the attributes tab the grey ball just keeps spinning.

Any help would be greatly appreciated! Thanks in advance.

Analytics table interval

$
0
0

Replies: 3

Hi,

I’d like to view and export the revenue table with an interval (by month), just like the chart.

Am I missing something or is it just not implemented?
If not implemented, is there a workaround like a plugin or a code snippet?

Thanks.

  • This topic was modified 3 hours, 33 minutes ago by kaudaj.
  • This topic was modified 3 hours, 32 minutes ago by kaudaj.

Analytics table automated export

$
0
0

Replies: 3

Hi,

Is there a known way, native or not, to export an Analytics table automatically (every month for example)?

I already purchased the export plugin by SkyVerge but I want to export revenue here, not each order.

Thanks.

  • This topic was modified 3 hours, 23 minutes ago by kaudaj.

[WooCommerce] Seek for Check Out Page Solution for my issue

$
0
0

Replies: 0

Hi, some of the products on my website are only available for local pickup (unable to ship).

When I add total 2 products to the carts – product a (only available for local pickup) and product b (with shipping fee $10), during check out, my setting turned out to be 2 options showed – local pickup and shipping fee of $10 for these 2 products, like below:

What it showed right now, which is not I expected:
1 x product a
1 x product b
-local pickup
-shipping fee $10

I want it to be:
1 x product a
-local pickup

1 x product b
– local pickup
-shipping fee $10

Can someone help me with this? How should I set?

Nested Category on Home Page

$
0
0

Replies: 3

Hi All,

On home page of a website I am creating, I want to add a section where its shows parent category and when click on parent category, it shows all subcategories and when I click on sub category it show all products under that subcategory.

So here is flow Parent Category >> Sub Category >> Products

Is there any way to achieve?

Regards,
Amit

Product category to custom page redirect + breadcrumb

$
0
0

Replies: 0

Hi,

We have an issue / problem but not sure how to fix it, That’s how we landed here. We’ve made custom pages; where we load & display products. The custom pages are in general ‘countries’ so like this:

https://ferrygogo.com/united-kingdom/

The products are the ferry lines to the UK (for example: https://ferrygogo.com/route/hull-rotterdam/), but the product categories can be similar to the custom page. We would like to have the breadcrumbs link back to the custom page, and make the product category a 301. Is there any way to fix this properly. Kind of a head breaker for me personally.

Hope you can help out

checkout page blank error message

$
0
0

Replies: 0

i am receiving a blank error message on my checkout page.
image of the error is attached

https://ibb.co/bmrgkFt

here is the system status report


### WordPress Environment ###

WordPress address (URL): https://
Site address (URL): https://
WC Version: 6.4.1
REST API Version: ✔ 6.4.1
WC Blocks Version: ✔ 7.2.2
Action Scheduler Version: ✔ 3.4.0
WC Admin Version: ✔ 3.3.2
Log Directory Writable: ✔
WP Version: 5.9.3
WP Multisite: –
WP Memory Limit: 256 MB
WP Debug Mode: ✔
WP Cron: –
Language: en_US
External object cache: –

### Server Environment ###

Server Info: Apache
PHP Version: 7.4.29
PHP Post Max Size: 128 MB
PHP Time Limit: 300
PHP Max Input Vars: 10000
cURL Version: 7.83.0
OpenSSL/1.1.1n

SUHOSIN Installed: –
MySQL Version: 5.5.5-10.3.34-MariaDB
Max Upload Size: 128 MB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔

### Database ###

WC Database Version: 6.4.1
WC Database Prefix: wpio_
Total Database Size: 648.32MB
Database Data Size: 397.72MB
Database Index Size: 250.60MB
wpio_woocommerce_sessions: Data: 5.02MB + Index: 0.08MB + Engine InnoDB
wpio_woocommerce_api_keys: Data: 0.01MB + Index: 0.02MB + Engine InnoDB
wpio_woocommerce_attribute_taxonomies: Data: 0.01MB + Index: 0.01MB + Engine InnoDB
wpio_woocommerce_downloadable_product_permissions: Data: 0.01MB + Index: 0.03MB + Engine InnoDB
wpio_woocommerce_order_items: Data: 16.28MB + Index: 4.76MB + Engine InnoDB
wpio_woocommerce_order_itemmeta: Data: 111.48MB + Index: 90.66MB + Engine InnoDB
wpio_woocommerce_tax_rates: Data: 0.01MB + Index: 0.03MB + Engine InnoDB
wpio_woocommerce_tax_rate_locations: Data: 0.01MB + Index: 0.02MB + Engine InnoDB
wpio_woocommerce_shipping_zones: Data: 0.01MB + Index: 0.00MB + Engine InnoDB
wpio_woocommerce_shipping_zone_locations: Data: 0.01MB + Index: 0.02MB + Engine InnoDB
wpio_woocommerce_shipping_zone_methods: Data: 0.01MB + Index: 0.00MB + Engine InnoDB
wpio_woocommerce_payment_tokens: Data: 0.01MB + Index: 0.01MB + Engine InnoDB
wpio_woocommerce_payment_tokenmeta: Data: 0.01MB + Index: 0.02MB + Engine InnoDB
wpio_woocommerce_log: Data: 0.01MB + Index: 0.01MB + Engine InnoDB
wpio_actionscheduler_actions: Data: 8.06MB + Index: 8.81MB + Engine InnoDB
wpio_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wpio_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wpio_actionscheduler_logs: Data: 21.55MB + Index: 12.03MB + Engine InnoDB
wpio_cartflows_ca_cart_abandonment: Data: 9.55MB + Index: 0.30MB + Engine InnoDB
wpio_cartflows_ca_email_history: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wpio_cartflows_ca_email_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wpio_cartflows_ca_email_templates_meta: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wpio_commentmeta: Data: 0.01MB + Index: 0.02MB + Engine InnoDB
wpio_comments: Data: 16.27MB + Index: 10.55MB + Engine InnoDB
wpio_e_events: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wpio_links: Data: 0.01MB + Index: 0.01MB + Engine InnoDB
wpio_litespeed_url: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wpio_litespeed_url_file: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
wpio_options: Data: 9.25MB + Index: 1.38MB + Engine InnoDB
wpio_postmeta: Data: 96.87MB + Index: 54.68MB + Engine InnoDB
wpio_posts: Data: 10.78MB + Index: 5.03MB + Engine InnoDB
wpio_po_plugins: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wpio_revslider_css: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
wpio_revslider_layer_animations: Data: 0.01MB + Index: 0.00MB + Engine InnoDB
wpio_revslider_navigations: Data: 0.01MB + Index: 0.00MB + Engine InnoDB
wpio_revslider_sliders: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
wpio_revslider_slides: Data: 0.20MB + Index: 0.00MB + Engine InnoDB
wpio_revslider_static_slides: Data: 0.01MB + Index: 0.00MB + Engine InnoDB
wpio_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wpio_stock_log: Data: 6.66MB + Index: 3.68MB + Engine MyISAM
wpio_termmeta: Data: 0.07MB + Index: 0.08MB + Engine InnoDB
wpio_terms: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
wpio_term_relationships: Data: 0.76MB + Index: 0.19MB + Engine InnoDB
wpio_term_taxonomy: Data: 0.03MB + Index: 0.05MB + Engine InnoDB
wpio_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wpio_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wpio_usermeta: Data: 11.78MB + Index: 10.03MB + Engine InnoDB
wpio_users: Data: 1.76MB + Index: 0.44MB + Engine InnoDB
wpio_wc_admin_notes: Data: 0.03MB + Index: 0.00MB + Engine InnoDB
wpio_wc_admin_note_actions: Data: 0.01MB + Index: 0.01MB + Engine InnoDB
wpio_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wpio_wc_customer_lookup: Data: 6.26MB + Index: 3.02MB + Engine InnoDB
wpio_wc_download_log: Data: 0.01MB + Index: 0.02MB + Engine InnoDB
wpio_wc_order_coupon_lookup: Data: 0.04MB + Index: 0.05MB + Engine InnoDB
wpio_wc_order_product_lookup: Data: 18.28MB + Index: 14.53MB + Engine InnoDB
wpio_wc_order_stats: Data: 6.26MB + Index: 4.77MB + Engine InnoDB
wpio_wc_order_tax_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wpio_wc_product_attributes_lookup: Data: 0.20MB + Index: 0.14MB + Engine InnoDB
wpio_wc_product_meta_lookup: Data: 0.76MB + Index: 0.67MB + Engine InnoDB
wpio_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wpio_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wpio_wc_tax_rate_classes: Data: 0.01MB + Index: 0.01MB + Engine InnoDB
wpio_wc_webhooks: Data: 0.01MB + Index: 0.01MB + Engine InnoDB
wpio_wfpklist_template_data: Data: 0.03MB + Index: 0.00MB + Engine InnoDB
wpio_wmfo_fraud_attempts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wpio_wmfo_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wpio_wsal_metadata: Data: 11.52MB + Index: 13.06MB + Engine InnoDB
wpio_wsal_occurrences: Data: 1.52MB + Index: 0.72MB + Engine InnoDB
wpio_wsal_sessions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wpio_yith_wcwl: Data: 0.01MB + Index: 0.01MB + Engine InnoDB
wpio_yoast_indexable: Data: 22.55MB + Index: 9.09MB + Engine InnoDB
wpio_yoast_indexable_hierarchy: Data: 1.52MB + Index: 0.78MB + Engine InnoDB
wpio_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wpio_yoast_primary_term: Data: 0.30MB + Index: 0.27MB + Engine InnoDB
wpio_yoast_seo_links: Data: 0.06MB + Index: 0.05MB + Engine InnoDB
wpio_yoast_seo_meta: Data: 1.26MB + Index: 0.00MB + Engine InnoDB

### Post Type Counts ###

aam_policy: 1
acoplw_badges: 1
acoplw_prod_list: 1
attachment: 21462
blocked_user: 78
br_labels: 1
custom_css: 2
elementor_library: 3
fgf_master_log: 172
fgf_rules: 6
jetpack_migration: 2
jp_img_sitemap: 3
jp_img_sitemap_index: 1
jp_sitemap: 1
jp_sitemap_master: 1
jp_vid_sitemap: 1
nav_menu_item: 84
oembed_cache: 25
page: 18
popup: 1
popup_theme: 6
post: 7
product: 4064
product_variation: 2618
shop_coupon: 639
shop_order: 27132
shop_order_refund: 1141
static_block: 1
wp_global_styles: 1
wpcf7_contact_form: 2
wpforms: 1
ywdpd_discount: 1

### Security ###

Secure connection (HTTPS): ✔
Hide errors from visitors: ✔

### Active Plugins (33) ###

Template Library and Redux Framework: by Extendify – 4.3.13
A2 Optimized WP: by A2 Hosting – 2.1.3.10.3
Advanced Access Manager: by Vasyl Martyniuk <vasyl@vasyltech.com> – 6.8.1
Akismet Anti-Spam: by Automattic – 4.2.3
Blackhole for Bad Bots: by Jeff Starr – 3.3.2
Contact Form 7: by Takayuki Miyoshi – 5.5.6
Elementor: by Elementor.com – 3.6.5
Envato Market: by Envato – 2.0.7
Extendify: by Extendify – 0.8.0
Facebook for WooCommerce: by Facebook – 2.6.13
Site Kit by Google: by Google – 1.73.0
HandL UTM Grabber: by Haktan Suren – 2.7.22
Heartbeat Control by WP Rocket: by WP Rocket – 2.0
WPBakery Page Builder: by Michael M - WPBakery.com – 6.4.2
KingComposer: by King-Theme – 2.9.6
WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels: by WebToffee – 2.8.6
Regenerate Thumbnails: by Alex Mills (Viper007Bond) – 3.1.5
Rename wp-login.php: by Ella van Durpe – 2.6.0
Slider Revolution: by ThemePunch – 6.2.15
Secure Admin IP: by Michal Novák – 2.0
Send SMS: by Lifetimesms.com – 1.7.6
Tokoo Extensions: by MadrasThemes – 1.1.12
User Role Editor: by Vladimir Garagulya – 4.62
Warp iMagick - Image Compressor: by PageSpeed Club – 1.9.5
WooCommerce Cart Abandonment Recovery: by CartFlows Inc – 1.2.15
Woocommerce delete product images: by Husain Ahmed – 1.0.2
Woo Manage Fraud Orders: by Prasidhda Malla – 2.5.5
Advanced Order Export For WooCommerce: by AlgolPlus – 3.2.2
WooCommerce Google Analytics Integration: by WooCommerce – 1.5.8
Stock Manager for WooCommerce: by StoreApps – 2.8.3
WooCommerce: by Automattic – 6.4.1
Yoast SEO: by Team Yoast – 18.8
WP-Optimize - Clean, Compress, Cache: by David Anderson
Ruhani Rabin
Team Updraft – 3.2.3

### Inactive Plugins (11) ###

Cloudflare: by Cloudflare
Inc. – 4.9.1

Free Gifts for WooCommerce: by FantasticPlugins – 7.0
Image optimization service by Optimole: by Optimole – 3.4.0
Leo Product Recommendations for WooCommerce: by LeoCoder – 1.9.2
LiteSpeed Cache: by LiteSpeed Technologies – 4.6
One Click Demo Import: by OCDI – 3.1.1
Plugins Garbage Collector (Database Cleanup) Old!: by Vladimir Garagulya – 0.14
WP 404 Auto Redirect to Similar Post: by hwk-fr – 1.0.3
WP Activity Log: by WP White Security – 4.4.1
WP Activity Log (Premium): by WP White Security – 4.3.6
WP Activity Log for WooCommerce: by WP White Security – 1.4.3

### Dropin Plugins (2) ###

advanced-cache.php: advanced-cache.php
maintenance.php: maintenance.php

### Settings ###

API Enabled: –
Force SSL: –
Currency: PKR (₨)
Currency Position: left
Thousand Separator: ,
Decimal Separator: .
Number of Decimals: 0
Taxonomies: Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)

Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
exclude-from-search (exclude-from-search)
featured (featured)
outofstock (outofstock)
rated-1 (rated-1)
rated-2 (rated-2)
rated-3 (rated-3)
rated-4 (rated-4)
rated-5 (rated-5)

Connected to WooCommerce.com: ✔

### WC Pages ###

Shop base: #5 - /shop/
Cart: #6 - /cart/
Checkout: #7 - /checkout/
My account: #8 - /my-account/
Terms and conditions: ❌ Page not set

### Theme ###

Name: Tokoo Child
Version: 1.1.13
Author URL: https://madrasthemes.com/
Child Theme: ✔
Parent Theme Name: Tokoo
Parent Theme Version: 1.1.12
Parent Theme Author URL: https://madrasthemes.com/
WooCommerce Support: ✔

### Templates ###

Overrides: tokoo/woocommerce/myaccount/form-login.php
tokoo/woocommerce/order/order-details-customer.php
tokoo/woocommerce/product-searchform.php

### Action Scheduler ###

Complete: 22,341
Oldest: 2022-04-10 09:11:44 +0000
Newest: 2022-05-10 13:20:19 +0000

Pending: 6
Oldest: 2022-05-10 13:34:44 +0000
Newest: 2022-05-12 16:18:35 +0000

### Status report information ###

Generated at: 2022-05-10 18:26:26 +05:00
Viewing all 102337 articles
Browse latest View live