Results 16 comments of Jorge M

Hey @pauljacobson, is this happening to all the products or only one? I did some investigation with the [the logs](2c2f8-pb/#js) shared in 4925901-zd-woothemes, I see that it is only one...

Hi @pauljacobson, I could reproduce the same error following these steps: 1. I go to the FB Marketplace. 2. I delete the product with variations manually. 3. I try to...

Thanks @rashedripon, >"Unsupported get request. Object with ID 'catalog:605944194160412:ODAyNTQ5NjAxMDM1OS8tL3RvcnRfMjkzMA==' does not exist I can reproduce that error when I delete the product manually in FB and then the plugin tries...

Thanks, @nicdwilson for the logs, they are really useful. I have tried to replicate the problem but unfortunately, I haven't been able to do it. I see my variation products...

Hey, thanks for bringing this up. I noticed that the website https://akraclimapruebas.akraclima.com/ is targeting customers in Spain but doesn't seem to have a consent mode banner. Since March 2024, [it's...

While working on this PR https://github.com/woocommerce/google-listings-and-ads/pull/2472, I was also considering this issue. However, a downside of using pagination is that the [pagination component](https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/components/src/pagination) requires the total number of results across...

Thanks @mikkamp for your comment! Yes, I misread the description of [return_total_results_count](https://developers.google.com/google-ads/api/reference/rpc/v17/SearchGoogleAdsRequest) and thought it was returning the number of results for the current query. I adjusted the PR https://github.com/woocommerce/google-listings-and-ads/pull/2472...

The other day I was looking into some code in WC Gutenberg blocks and I realize that they have one variable named `$version` that seems that is replaced automatically. [See...

@mikkamp, I investigated deeper into why `GoogleAdsFailure:init` consumes more resources than expected. ### The Problem: The primary issue arises when the init function is executed, which attempts to parse two...

Here are the cachegrind reports: Before: ![image](https://github.com/woocommerce/google-listings-and-ads/assets/2488994/484b8915-21d6-47c4-af34-08d94e3715e4) After: ![image](https://github.com/woocommerce/google-listings-and-ads/assets/2488994/d9915e75-6bbb-4fdc-884d-1b8d9c41ae0e) Shifting `GoogleAdsFailure:init` to the `error_handler` will help in cutting down the time allocated for the Google protobufs functions. However, the GL&A...