kartikparmar
Forum Replies Created
-
Forum: Plugins
In reply to: [Change Price Title for WooCommerce] tweakYes, You can set the value as below.
Regular Price : <strike>$250</strike><br/>Our Price: $100
Please let me know if that works for you or not.
Regards,
KartikForum: Plugins
In reply to: [Change Price Title for WooCommerce] Doesn’t Work on Store PageThank you for sharing the URL.
Can you please let me know that you have set a price title and it is not being applied on the Shop page? If that is the case, then there is an option “Applicable on all WooCommerce Pages” that applies the price title on all WooCommerce pages.
Please see this screenshot: https://prnt.sc/rd3pqfRegards,
Kartik ParmarI am getting this message in Stripe log.
“message”: “Non-INR transactions in India should have shipping/billing address outside India.”,
Hi @pratik-jain
Thanks for your response.
Basically, I want to achieve below thing on my site.
Some customer will be doing initial purchase of the product(billed yearly) using 100% off coupon code. After one year it can be automatically renewed as per the actual price of product.Any help to achieve this will be highly appreciated.
: Kartik
Forum: Reviews
In reply to: [Bulk WooCommerce Category Creator] EasyHi @jdstiger
Thank you so much for the review. ??
Forum: Plugins
In reply to: [Bulk WooCommerce Category Creator] Only shows 1 parent levelHi @cheappros
I apologize for the late response.
I have released v1.2 of the plugin which will resolve the sub-category related issue. Please check the same and let me know the result.
I will try to make a plugin for bulk attribute once I will get some free time. If you are willing to pay for it then please contact me on below email address.
Email Address: parmarkartik19 at yahoo dot comFeel free to let me know if you need any further assistance.
Forum: Reviews
In reply to: [Change Price Title for WooCommerce] Awesome!Hi @joe564
Thank you for the appreciation. ??
I apologize for the late response.
I have released v1.3 of the plugin in which I have covered your issues. Please check if still you are facing the same issue in this version or not. Please let me know the result.
Once again please accept my sincere apology for the inconvenience you have faced due to the issue in the plugin.
Regards,
Kartik ParmarHi @roskosh030
You can use “wcdn_before_template” action hook. Below is the code snippet I have shared. Hopefully, that will help.
function wcdn_before_template_call() { // wcdn_get_orders() function to get the information of the order being printed. } add_action( "wcdn_before_template", "wcdn_before_template_callback" );
Please let us if the provided information was useful or not.
Hi @rockunmoved
Apologies for the delay in response.
1. Please replace below code with the code on line number 202 of the bulk-wc-category-creator.php file of the plugin.
Code snippet:
$categories = get_terms( array( 'taxonomy' => 'product_cat','hide_empty' => false, 'parent' => 0 ) );
2. Does that mean you want all the parent as well as subcategories in the dropdown so that it will allow creating grandchild category? If I understood it correctly then in the future update of the plugin I will try to add the same so one can utilize that as well.
Please let me know if you have any further questions.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Invoice dateHi @calamars
In that case, you will have to make some changes in the plugin files for now.
1. Go to line no 251 in ‘woocommerce-delivery-notes/includes/wcdn-template-functions.php’ file. You will find this condition –
if( wcdn_get_template_type() == ‘invoice:’ ) {Remove the colon from the string ‘invoice:’. Change it to – if( wcdn_get_template_type() == ‘invoice’ ) {
2. Go to line 501 in ‘woocommerce-delivery-notes/includes/class-wcdn-print.php’ file. You will find this statement –
$meta_added = add_post_meta( $order_id, $meta_key, time(), true );
Change it to –
$meta_added = update_post_meta( $order_id, $meta_key, time() );This will add a row which shows the Invoice date information as shown in the below screenshot.
Screenshot: https://i.prntscr.com/69ZAkxcNTTK4VlZ_1ALppQ.pngWe will add this same change in the next update of our plugin so that you can update it in the future.
Please let me know if you have any further question.
Regards,
Kartik ParmarForum: Plugins
In reply to: [WooCommerce] Needing PHP Help with Custom emailsHi @bramking08
Go through this post link for the details description on how to create a custom email template for WooCommerce.
Link: https://www.tychesoftwares.com/create-custom-email-templates-woocommerce/Forum: Plugins
In reply to: [WooCommerce] Product viewed per hour pluginHi @fiolent,
By using plugins or custom code you can achieve your business requirements.
-Using the Plugin.
Post Views Counter Plugin: https://www.ads-software.com/plugins/post-views-counter/
Also, there are other plugins available which will do this job.-Using Custom Code.
If you have a bit knowledge of coding then you can follow below post link.
Link: https://www.being-idea.com/custom-woocommerce-product-view-counter-using-hooks/Forum: Plugins
In reply to: [WooCommerce] Not sending order finished E-MailsHi @christianserrer,
Is that custom order notification email or it is “Completed order” email notification of WooCommerce?
– If it’s “Completed order” email notification of WooCommerce then the first thing you can do is to deactivate all the plugins except WooCommerce and set default WordPress theme and check if the issue still persists or not.
– If its custom order notification email added by some plugin then you will need to contact plugin author to resolve this issue.
Forum: Plugins
In reply to: [WooCommerce] In Stock NotificationHi @jshakour,
There is no such inbuilt functionality in WooCommerce which notifies the customer when products are back in stock. But you can use WooCommerce Waitlist extension to achieve your requirements.
Link: https://woocommerce.com/products/woocommerce-waitlist/