jlareauxskyverge
Forum Replies Created
-
Forum: Plugins
In reply to: [Sequential Order Numbers for WooCommerce] Version update?Hey @wpsupacc ??
I wanted to follow up and let you know we have released version 1.11.0 recently.
I’m going to mark this thread as “solved” now, but if you run into any other questions or issues, please feel free to open a new thread!
Thank you!Forum: Plugins
In reply to: [GoDaddy Payments for WooCommerce] Error processing cardsHey gtaheatca,
It has been a long time since we heard from you, so I’m going to mark this topic as resolved.
If you’re still experiencing issues please take a look at our FAQs for more information and create a new thread if you have further questions.
Thanks,
Jesse ??Hi there!
Thank you so much for using our Extra Product Sorting Options plugin. I’d be happy to help with this!
Our plugin comes with a pot file file that can be used to translate the plugin ??
That file can be found in the plugin folder at:
/woocommerce-extra-product-sorting-options/i18n/languages/woocommerce-extra-product-sorting-options.potHere is a guide on translating WooCommerce extensions:
https://woocommerce.com/document/translate-woocommerce-extensions/Could you let me know is this helps?
Thank you!
Hey there,
It has been a long time since we heard from you, so I’m going to mark this topic as resolved.
If you’re still experiencing issues please take a look at our FAQs for more information and create a new thread if you have further questions.
Thanks,
Jesse L ??Hey there,
It has been a long time since we heard from you, so I’m going to mark this topic as resolved.
If you’re still experiencing issues please take a look at our FAQs for more information and create a new thread if you have further questions.
Thanks,
Jesse LForum: Plugins
In reply to: [Customizer for WooCommerce] WooCommerce Translation suddenly only 77%Hey there,
It has been a long time since we heard from you, so I’m going to mark this topic as resolved.
If you’re still experiencing issues please take a look at our FAQs for more information and create a new thread if you have further questions.
Thanks,
Jesse LHey there!
I just wanted to follow up on the previous message. Do you still need help with GD Payments? I’m happy to do so. ??
Hope you have a great day!
Hi there!
Thank you so much for using our Godaddy Payments plugin. I’d be happy to help with this!
Could you please let me know the PHP version the site is running on?
Also, have there been any successful orders placed with the payment gateway?
Thank you!Hi there!
Thank you so much for using our Sequential Order Numbers plugin. I’d be happy to help answer your questions about it!
If we de-activate the plugin, would we lose the current numbering sequence or will WooCommerce just keep incrementing +1 itself based on the most recent order?If you deactivate the plugin, WooCommerce will begin using the post ID of the order as the order number.
If we set the order numbers back to 450,000, in the future will WooCommerce detect that 600,xxx was used before and then skip those order numbers?If we set the order numbers back to 450,000 or any number lower than the current order ID, the numbers will not reset. If the current order number is 600,101, the next order will be 600,102.
Do you have any more questions I can help with?
Thank you!Forum: Plugins
In reply to: [Sequential Order Numbers for WooCommerce] PHP 8.1 compatability?Hey there,
Thank you so much for letting me know the type of error you’re seeing.
?
?I can appreciate that debugging other plugins can get difficult with a lot of notices and warnings flooding the log.
?
?Adjusting the error reporting level to report warnings and above may clear up your log files ??
?
?Can you let me know if you are needing PHP error reporting at the most verbose level?
Thank you!Forum: Plugins
In reply to: [Sequential Order Numbers for WooCommerce] PHP 8.1 compatabilityHi there!
Thank you so much for using our Sequential Order Numbers plugin. I’d be happy to help with this!
Could you please clarify if those 2 PHP logs are Errors, Notices, or Warnings?
Also, could you let me know if the plugin is having any unexpected behaviors or obvious issues with functioning?- This reply was modified 1 year, 11 months ago by jlareauxskyverge.
Hey there,
Thank you so much for sharing what your solution was!
I hope we were helpful along the way ??
Thank you!Hey there,
My apologies! I missed the variation part. That would hook onto wc_sku_generator_variation_sku instead of wc_sku_generator_sku.
I’ve modified my previous filter to use the variation hook:<?php // Replace hyphen with forwardslash in product SKUs function sv_wc_sku_generator_sku( $product_sku, $product ) { $product_sku = str_replace( '-', '/', $product_sku ); return $product_sku; } add_filter( 'wc_sku_generator_sku', 'sv_wc_sku_generator_sku', 10, 2 );
Can you give this filter a try and let me know if it works for you?
Thank you!Hi there!
Thank you so much for using our Product SKU Generator plugin. I’d be happy to help answer your questions about it!
We have a hook available that you could use to accomplish this called wc_sku_generator_sku.
A filter like the one below should do the trick ??<?php // Replace hyphen with forwardslash in product SKUs function sv_wc_sku_generator_sku( $product_sku, $product ) { $product_sku = str_replace( '-', '/', $product_sku ); return $product_sku; } add_filter( 'wc_sku_generator_sku', 'sv_wc_sku_generator_sku', 10, 2 );
Do you think the above will work for you?
- This reply was modified 2 years ago by jlareauxskyverge.
Forum: Plugins
In reply to: [Product SKU Generator for WooCommerce] Duplicate or copy to draft problemHey j0a0pe5r0,
It has been a long time since we heard from you, so I’m going to mark this topic as resolved.
If you’re still experiencing issues please take a look at our FAQs for more information and create a new thread if you have further questions.
Thanks,
Jesse ??