nullkohol
Forum Replies Created
-
Thanks @jaysupport this worked π
Hi @jaysupport , we were also wondering about this issue. Maybe you can find out where this comes from or how to solve this with custom css without breaking anything else.
Here you can find the same with the updated plugin (now version 2.4.8). everything else (WP version Theme version etc) is the same. The larger space between the categories is clearly visible.
Hi @mohsinbsf , thank you for the video. It was quite some effort, but we provided your colleagues with all necessary information. Let’s see if they can solve this bug. I’ll try to keep you and everyone posted.
Hi @mohsinbsf ,
thank you for trying to help. Did you try with different locales? Obviously there’s some kind of “translation” error related to the time.
I don’t know how I can open a ticket at your website. Your links forwards me to the contact page.
I also tried to file an issue on Github, but there you don’t seem to take issue reports.To be honest, I am very disappointed regarding this lack of service. And I think it’s also inefficient for you. While I understand that this is free software, it’s not necessary to put obstacles for a user who wants to give bug reports. The issue occurred here before and the solution is not visible because you didn’t really help back then either. Maybe the issue was solved, maybe not. Now we have the same problem and we all start from zero again.
Forum: Plugins
In reply to: [WooCommerce] New Product Filters Block attribute values orderThank you π Unfortunately, that’s my own feature request …
I am afraid that so few people use this block by now (and with only so few people ever doing stuff like report bugs and file feature requests) – someone taking this even into consideration will take months.
Guess for now we’ll have to do something ugly like explicitely naming our attributes like “1 – very low sugar” and “2 – low sugar” and so on. People will not like this and start asking us again why we don’t simply use Shopify -.- But I don’t really see much other choice since the other filters are deprecated.
Forum: Plugins
In reply to: [WooCommerce] New Product Filters Block attribute values orderHi @shahzeenfarooq , thanks for your answer. Could you share the link again? It doesn’t work. I’ll be happy to support that request. I actually already started a request myself, but then realised that this new behaviour differs so much from what was there before.
I am sad to hear that there are no plans to change this soon. We have been waiting for the new filters for a year now and were so happy to see they were released! But in this state they are not usable for us π I really wonder why that was decided because it really breaks the logic and doesn’t make any sense at all to me.
Forum: Plugins
In reply to: [WooCommerce] wc_add_notice not disappearing anymore on product archiveI only do what I expect others to do as well π (and what I think will help others)
Forum: Plugins
In reply to: [WooCommerce] Analytics / import historical data not workingHi @lovingbro thanks for your kind words. That’s the least I can do for a software that I use for free π I already reviewed WC, so I cannot do it again I think π
Forum: Plugins
In reply to: [WooCommerce] wc_add_notice not disappearing anymore on product archiveIn case anyone is interested (@saivutukuru or @mosesmedh or @shahzeenfarooq or anyone else reading): Fix for the bug is scheduled to come with WooCommerce 10.2.0. You can see this here.
Forum: Plugins
In reply to: [WooCommerce] Analytics / import historical data not workingHi @mosesmedh , thank you for trying on π
I switched to Twentytwentyfour theme, but nothing changes in the import (looks like it’s starting, but then nothing happens).
I am currently installing WooCommerce Analytics to see if that helps. However, it says in the plugin details that it’s still in early access/beta stage. That’s not something I would easily install in a productive system. On our test platform I don’t mind.
Also now I see a message “WooCommerce Analytics requires Order Attribution to be enabled.”. If I remember correctly, this is a feature that I didn’t enable for good reasons. This is the kind of tracking I don’t like. As above, I can do this on our test platform, but I hope this is not supposed to be the solution for our prod environment.While I was looking around to see if this new plugin helps, I thought of something else: Our testing environment is hidden and can only be accessed with credentials. We know that this sometimes causes problems when importing data that was exported from another WP environment. In this case here, we import data from the same database, right? But there seems to be some external process involved because … switching off this security feature actually solved the problem!!! I was able to import historical data and now I see statistics :):):)
So I don’t understand why, but in this case the problem was access from outside to our environment.
Thank you, @mosesmedh and @shahzeenfarooq for your support π
I hope this thread will help other people facing the same problem.Forum: Plugins
In reply to: [WooCommerce] Analytics / import historical data not workingHi @shahzeenfarooq ,
yes, my database version is also 10.1.0.
I found a log file called “fatal_errors” but it only contained an error that I caused while messing in functions.php π that error was long solved, file was more than a week old.
I see no errors in browser console. On the network tab, I see a REST call to /wp-json/wc-analytics/reports/import?skip_existing=true&_locale=user . It returns
{
"status": "success",
"message": "Die Daten der Berichtstabelle werden neu erstellt. Bitte warte etwas, bis die Daten vollstΓ€ndig ausgefΓΌllt sind."
}I also see this message as an alert/notice in the frontend. So obviously the API received the call, but then something happens in the backend … ?
I hope you can make something out of this information. I am puzzled.
Forum: Plugins
In reply to: [WooCommerce] Analytics / import historical data not workingHi @mosesmedh , thank you for trying to help. Yes, I found many threads regarding problems with Analytics and importing historical data, but as you said, it always was a different cause and never fit my circumstances.
Here’s my test setup (most stuff deactivated because of the various problems).
Looking at WC Scheduled Actions, I don’t see any entries at all for wc-admin_import_customers. That’s strange. I see something for wc-admin_import_orders though. Most recent one was completed:
- 2025-08-14 19:05:16 +0000
action created - 2025-08-15 11:07:31 +0000
action started via WP Cron - 2025-08-15 11:07:31 +0000
action complete via WP Cron
Forum: Plugins
In reply to: [WooCommerce] wc_add_notice not disappearing anymore on product archiveHi @mosesmedh, you’re right, the issue is closed. I thought it might be reopened with new information coming in, but it didn’t. So I actually posted a new issue now. We’ll see what happens π
Short information for those reading here that are not interested in deep technical questions:
@saivutukuru suggested this:
If you want your notice to appear only on the cart page (as in WC 9), youβll likely need to wrap your action in a conditional, for example checkingis_cart()or usingis_checkout()depending on where you want it triggered.I tried this,but the is_cart conditional tag doesn’t work as expected. It returns true when you first enter the cart page (or reload the full page), but it returns false when something inside the cart changes.
So for my purpose it solves the issue of this multiples evaluation being run on the shop page. But now the multiples evaluation doesn’t work reliably on the cart page anymore. Problem: If someone chose 5 products and then sees the error message and thinks “well, I’ll just order twice the same product” and increases the quantity of a product in the cart, my code is not run because is_cart() returns false. Thus, the customer now has 6 products in their cart, but the error message doesn’t disappear -.-I hope this was understandable and detailed enough for readers here. Everyone interested is invited to follow and comment on Github π
Forum: Plugins
In reply to: [WooCommerce] wc_add_notice not disappearing anymore on product archiveHi @saivutukuru,
thanks for looking into this and for explaining. Makes perfect sense to me and that’s very likely the reason for the behaviour I am seeing.
I am trying to adapt my code to WC10, however, unfortunately I directly ran into this old bug. I’ll post my findings there, since from what I see, this bug is still active even though this report I found is from 2021.
Forum: Plugins
In reply to: [WooCommerce] strange order creation timeI tried to replicate the strange behaviour today and it’s not happening (anymore).
Maybe an update fixed it. Maybe something else was changed … I don’t know and I’ll keep an eye on it to catch it in case it happens again.
Thanks for your ideas of where to look closer. I’ll keep them in mind.
- 2025-08-14 19:05:16 +0000