bling007
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Admin] Gross Sales Report – ProductBasically, if I understand it correctly, my requirement is to add TAX and GROSS SALES column under Analytics > Products.
Yes, it is a clear false positive. Can it be fixed? I guess the URL Param needs to be tweaked a bit.
Please refer the screenshot: https://prnt.sc/128tee7
wooptpm_get_cart_items is causing massive lag on page loads. Any fix possible?
Caching PLugin: wp-rocket.
- This reply was modified 5 years, 1 month ago by bling007. Reason: Caching
Appreciate such prompt support. Let me know if I can further assist in bug tracing. I have a profound experience with WordPress development.
Yes. Unless the plugin name has changed. I have been trying many plugins for years. This is a new trial.
Switched from: https://wordpress.org/plugins/woocommerce-conversion-tracking/
Tried before: https://wordpress.org/plugins/woocommerce-google-dynamic-retargeting-tag/Also currently installed and running: https://wordpress.org/plugins/woocommerce-google-analytics-integration/
Above does enhanced e-commerce tracking.
I was saving Google UA analytics id.
The first time – I saved G4 id which threw the error I think.Currently running both G4 and UA.
Great question. It did happen on the first save. Though it was ignored.
Now, it has happened on a later save. So reported.Forum: Plugins
In reply to: [Simple Job Board] Woocommerce Lightbox BuggedA mail has been sent. Kindly revert as soon as possible.
Forum: Plugins
In reply to: [Plugin Load Filter] Issue with Simple Job Board PluginCaching issue. Resolved.
Forum: Plugins
In reply to: [Plugin Load Filter] Issue with Simple Job Board PluginKindly point out to the file and line of code where this patch is applied. The bug is fixed on the staging server, however, it is not fixed on the production server. I will try to debug it manually if you can help me point out the line.
Forum: Plugins
In reply to: [Plugin Load Filter] Issue with Simple Job Board PluginI reverse my comment, after saving the filter again – it seems to get fixed. Will test more cases.
Forum: Plugins
In reply to: [Plugin Load Filter] Issue with Simple Job Board PluginI don’t think so. The Classic editor is still missing from the previous post editting.
Forum: Plugins
In reply to: [WooCommerce] Random Products appearing in cartIn my case, it was related to REST API plugin. Once I disabled it, the problem was resolved. I do understand the frustration this can cause, but avoid the temptation to touch the code or database.
Additionally, it always helps to know what plugin was the last on the update. Usually, it is the culprit. If not, then you need to disable all plugins except WC and start activating one by one till u notice the issue.
Kindly refer: https://prnt.sc/y016vg
All plugins for editing WP-admin-menu show these internal menu components and literally get spammed.
No clue why these appear as a main-menu item.
These are available inside clearfy setting page and not as an independent WP-MENU.
Kindly remove such references.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] Related Products by meta_keyThanks, Michael. You are correct, this solution is for Woocommerce (as per the question). I use a modified version that directly modifies the query. I provided the is_product() method to avoid conflict with page/post_types != product.
Assuming we still want to use the original plugin logic on other pages.When it comes to suggesting related products, it does not matter how many are suggested as long as they are related. So for this case, I simply increased the number to 50, which easily gives me 20+ products. Pretty great in my view.
I would really not suggest excluding products before the query. Since products keep getting back instock and going outofstock, its better to rebuild cache and show as per the related-post’s stock status. It also saves the server’s resources.
However, no e-commerce store or requirement is similar. This solution does help majority of the cases.
function yarpp_custom_wp_query($query) { if(isset($query->yarpp_cache_type)){ $query->set('post_type', 'product'); $meta_query = [ 'relation' => 'AND', [ 'key' => '_stock_status', 'value' => 'instock', 'compare' => '=', ] ]; $query->set('meta_query', $meta_query); } return $query; } add_filter('pre_get_posts', 'yarpp_custom_wp_query', 100);The above will not consider if the page is the product page.