Nitin Prakash
Forum Replies Created
-
Forum: Reviews
In reply to: [Product Author for WooCommerce] Very good@chekki, Thank you for your valuable feedback. It means a lot.
Forum: Reviews
In reply to: [Place Order Without Payment for WooCommerce] Works as advertised! Thank you!@modernscarface, Thank you for your valuable feedback. It means a lot.
Forum: Reviews
In reply to: [Place Order Without Payment for WooCommerce] Perfect@zenabobena, Thank you for your valuable feedback. It means a lot.
Forum: Reviews
In reply to: [Thank You Page for WooCommerce] Works like a charm!@pearlorganicdotcom, thank you for your valuable feedback. It means a lot
@rafflesprovident, thanks for using the plugin.
This plugin just removes the need to pay for WooCommerce.
As per default WooCommerce standards this plugin skips the checkout process and simply allows the user to order without payment and changes the order status as complete.I hope this explains the functionality of this plugin. Though I will check the possibilities for the same.
Thanks, @evilmc for reaching me.
This plugin is compatible with the latest WC and WP version, but I will suggest you to use it on your development environment. Though the plugin will work on any latest WC and WP setup
Forum: Plugins
In reply to: [Thank You Page for WooCommerce] Can’t delete thank you page@nemoprofeta thanks for pointing out. I will check and try to replicate the issue.
If there is such issue I will be fixing it soon.Your comments and feedbacks are very much valuable as they make the plugin more usable and error-free
- This reply was modified 5 years, 6 months ago by Nitin Prakash.
Forum: Plugins
In reply to: [Thank You Page for WooCommerce] Can’t delete thank you pageHello @nemoprofeta, thank you for posting your query.
Here are a few things that can be done
1. If you have activated the global setting for thank you page, then every time payment is completed the page will redirect to the specified Thank You page. So you can disable Global Thank You.
WooCommerce Settings -> Products -> WC Thanks Redirect
Just Disable the global setting2. If you have set the per product redirect URL then go to
Particular product -> General
Leave the Thank You URL setting empty and saveI hope it solves your problem, but let me know if it persists
Forum: Plugins
In reply to: [Place Order Without Payment for WooCommerce] QuestionsThanks @omileb
For using this plugin and reaching out to put your query.
Currently, this plugin just removes the possibility of payment and completes the order i.e. the order has been successfully completed.
Since the order gets completed that is why the customer may be able to Download the files.There can be many possibilities depending upon the scenario
The code below might work if you place in your theme functions.php but I advise to test on Development before using this on Production
add_action( ‘woocommerce_thankyou’, ‘woocommerce_thankyou_change_order_status’, 10, 1 );
function woocommerce_thankyou_change_order_status( $order_id ){
if( ! $order_id ) return;$order = wc_get_order( $order_id );
if( $order->get_status() == ‘completed’ )
$order->update_status( ‘pending’ );
}Forum: Plugins
In reply to: [Place Order Without Payment for WooCommerce] QuestionsDear @timkf18,
Thanks for posting your questionCurrently this plugin when active will
1. Completely remove payment system from woocommerce
2. Completes Order without PaymentCurrently this plugin does not support User Capabilities and Roles. If you can give more detailed description of the feature with “Ability to work with certain logins” I will be happy to provide this new feature in new version soon.
Thanks in advance
Forum: Plugins
In reply to: [BP Required Field Reminder] Redirect Error@demente1987 , I have tested the plugin, it only works if the user is logged in.
So do not worry about speed issues for SEO.I take you issue for Load Time and in next update I will try to fix the speed issue for Profiles with many Profile fields.
Thanks in advance
Forum: Plugins
In reply to: [BP Required Field Reminder] Redirect Error@battleredtexan , Thanks I have noted your suggestion.
I will try to add this feature very soon, but I cannot say an estimated date as of now.
- This reply was modified 5 years, 11 months ago by Nitin Prakash.
Forum: Plugins
In reply to: [BP Required Field Reminder] Redirect Error@demente1987 , @battleredtexan the redirect loop issue on https:// websites is fixed.
Please use the version 1.1
Let me know if it works for you
Forum: Plugins
In reply to: [BP Required Field Reminder] Redirect ErrorCurrently it works like this.
1. Admin sets up profile fields
2. User registers
3. If any field that is required is not filled by use then it redirects user to buddypress default profile page.User will not be able to perform anything untill all profile fields are filled up.
Though, I will test the plugin for SSL issues once again tonight
- This reply was modified 5 years, 11 months ago by Nitin Prakash.
Forum: Plugins
In reply to: [BP Required Field Reminder] Redirect ErrorOr if possible I will review the plugin once again on different SSL websites on my end, meanwhile, you can disable this plugin for time being.
I will get back to you ASAP
Thanks
- This reply was modified 5 years, 11 months ago by Nitin Prakash.