krzysztofekk
Forum Replies Created
-
I’m doing great, thanks!
You refer to the “Formintaror” plugin, but my question was related to the “Hustle” plugin.
Does your solution work for both of them?
Thanks in advance.Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order detailsHi,
It’s me again.
Is that possible to delete already created invoice and generate new one?
If I changed the shipping address for example.
EDIT: I just bought the premium extension – the translations working great now.
Btw. Would it be possible to delete the bar with “product/quantity/price from the second page of invoice?
That is the screenshot of issue: https://i.ibb.co/PwtpLfY/Zrzut-ekranu-2019-12-4-o-14-36-11.png
and that is a second page of invoice.- This reply was modified 4 years, 11 months ago by krzysztofekk.
- This reply was modified 4 years, 11 months ago by krzysztofekk.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order detailsAlright, now everything is clear.
Thanks for your whole help.Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order detailsBut with the extensions will I be able to translate phrases like “Order number” etc.?
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order detailsWe use WPML.
So if I understood correctly – I need a professional extension to translate these phrases? It’s fine for me, I just want to be sure that I understand you correctly.Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order detailsSorry for bothering you again.
I just found one issue – we are running a multi language site.
But it doesn’t matter if I place an order in English/German/Polish – the invoice is always in English(I mean that the product description is translated but words like “order number”, “order data”) etc are always in english).
Is that possible somehow to translate these strings?Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order detailsThanks for your quick reply.
I can’t wait to test the plugin.
If it works so good like the support then we will be for sure your next customer.
Thanks for your effort, I wish you a great day!Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order detailsI just tested your code – it works perfectly!
Now I have two questions now(sorry for bothering you :/ ) – is that possible to hide the product weight and the invoice number(I tried to disable it in options but it didn’t works :/)Edit: I just found how to disable order number. Is that possible to hide the weight of product?
- This reply was modified 4 years, 11 months ago by krzysztofekk.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order detailsHello,
Thanks for your quick reply.
I have one more question – when we used another plugin, we were facing a weird any annoying issue very often – when 2 peoples placed an order in the same time, the invoices were messed up.
For example, there was an order with number 1 and second order with number 2.
The first order(1) has an invoice with correctly shipping data and with correctly order description(configuration from VPC).
The second order(2) has an invoice with correctly shipping data but with an order description from order nr. 1. It was very confusing to check the invoices one after one and looking for issues.Could you please tell me if you received any feedback about this kind of issue before?
By the way – thanks for the code, I am going to check it right now.
BTW2. If it would be possible to “protect” it somehow we would be very interested in buying the premium version.
BTW3. I just tested your code – it works perfectly!
Now I have two questions now(sorry for bothering you :/ ) – is that possible to hide the product weight and the invoice number(I tried to disable it in options but it didn’t works :/)- This reply was modified 4 years, 11 months ago by krzysztofekk.
- This reply was modified 4 years, 11 months ago by krzysztofekk.
Forum: Fixing WordPress
In reply to: Error establishing a database connection after updateBump :/
Forum: Fixing WordPress
In reply to: Error establishing a database connection after updateI changed the
max_execution_time
to 90 but it doesn’t help.
We still face the same error every 1 hour.019-10-29T11:34:17+00:00 CRITICAL Maximum execution time of 90 seconds exceeded in /var/www/html/public_html/wp-includes/functions.php on line 446
I figured out that is this code:
/**
* Unserialize value only if it was serialized.
*
* @since 2.0.0
*
* @param string $original Maybe unserialized original, if is needed.
* @return mixed Unserialized data can be any type.
*/
function maybe_unserialize( $original ) {
if ( is_serialized( $original ) ) { // don’t attempt to unserialize data that wasn’t serialized going in
return @unserialize( $original );
}
return $original;
}However, I still can’t figure out what kind of data are trying to be serialized and on which objects this function is operating.
- This reply was modified 5 years ago by krzysztofekk.