Daniel P.
Forum Replies Created
-
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Social icons positioningGreat answer @britner. Thank you for your comments and snippet 💪
Forum: Plugins
In reply to: [Genesis Blocks] Background video on container@mkcardenas maybe replace the tag rendered in the frontend.
For example, if a video is selected and use a HTML5
videotag and if it’s an image use animgtag as you do now.Do you have this plugin on GitHub for me to open an issue?
Thank you.
- This reply was modified 5 years, 1 month ago by Daniel P..
Forum: Plugins
In reply to: [Packlink PRO for WooCommerce] CPU overload due to plugin@mmichiels I agree with you, I didn’t know that @packlink was marking this as resolved, and I think anyone on this thread known either.
This action speaks from itself… Maybe @packlink doesn’t care about the WordPress community and is simply ignoring support requests.
Forum: Plugins
In reply to: [Packlink PRO for WooCommerce] CPU overload due to plugin@mmichiels who is marking this issue as resolved? @packlink?
Forum: Plugins
In reply to: [Packlink PRO for WooCommerce] CPU overload due to plugin@encolorespastel el problema es que @mmichiels ha cerrado el hilo y está como resuelto, por lo tanto no van a responder sobre esto, ni sabremos si esto avanza o no… Quizá hay que abrir nuevamente un hilo y no cerrarlo hasta que lo solucionen.. Si por casualidad abres uno nuevo, pega aquí el enlace en una respuesta así podemos seguirlo.
Hey @apasionados parece que al actualizar ambos plugins el problema se ha solucionado. Gracias por la ayuda 🙂
Great, thank you, I will try and let you know!
We check the response time through New Relic, a metric tool for resources.
I have found that we are using Geolocation IP Detection 3.3.0 and Lead info with country for Contact Form 7 2.0
Maybe those versions are the responsible for this resource consumption. A solution could be to update them both and re-test. What do you think?
Regards from Spain, to be more specific from A Coruña 🙂
@dpeyou I understand your point.
Let me ask another question. I have setup to send the invoice to the client once the order is completed. Is there any way to bypass this? I’m trying to achieve the same as before, when a user buys some special product, or there is a product on an order, don’t send the invoice by email to the customer.
Is there any hook that runs before the sending email action I can intercept and fire if the conditions are met?
Thanks.
@alexmigf thank you for your help. I have modified the snippet you create because actually we need to exclude only one product. The new snippet will compare the product ID and unset it from the invoice:
add_filter( 'wpo_wcpdf_order_items_data', function( $items, $order, $document_type ) { $product_to_exclude = 10324; if( ! empty( $items ) && ! empty( $order ) ) { foreach( $items as $item_id => $item ) { $product_id = $item['variation_id'] != 0 ? $item['variation_id'] : $item['product_id']; if( $product_id == $product_to_exclude ) { unset( $items[$item_id] ); } } } return $items; }, 10, 3 );The problem is that when generating the invoice the subtotal and total are still calculating the value of the product. In this case we have made a test using the product to exclude (was 50€). So the invoice generated is empty of items but the calculation is still happening.
We need this type of functionality because we are selling Gift Cards, and we don’t need them to be invoiced. We want to exclude this product from invoices.
Please see: invoice screenshot
- This reply was modified 5 years, 2 months ago by Daniel P..
Forum: Plugins
In reply to: [Packlink PRO for WooCommerce] CPU overload due to pluginThis is also wasting so much energy on doing nothing but updating all day long even if there are no purchases… Please, how can you tell your plugin is doing “very high-performance request”. This seems to be a REALLY LOW PERFORMANCE PLUGIN.
Forum: Plugins
In reply to: [Packlink PRO for WooCommerce] CPU overload due to plugin@mmichiels can you mark this ticket as unsolved for @packlink to take some action on this issue?
Forum: Plugins
In reply to: [Packlink PRO for WooCommerce] CPU overload due to plugin@mercurio32 @veecious It seems that the plugin creator doesn’t seem to realize the importance of this issue. We need your attention @packlink here.
The CPU overload is because your 1 minute update, please consider my past comment on letting us users to manage the update interval. This could be done by placing an option or even modifying it by a function/hook.
Great to hear Peter, sorry for the confusion.
Thank you! Also I wanted to congratulate you and your team for such a great plugin! I’ve being using it for almost 6 years on many client websites 🥳
Hello @wfpeter, thank you for your answer.
I have checked the URLs in my case and they return a blank page as you said (I’m the theme developer ☺️)
So in my case I will discard the theme cause.
I have investigated more on Google Search Console and found that the URL’s with the
wordfence_lhparameter are under Excluded > Crawled — Currently Not Indexed. So they are not being indexed by Google. For some reason they are excluded and I think that’s the expected behavior. Is that right?Thank you again!