Why is it that Elite Licenser dropdown cannot be found in WooCommerce variable product ?
Any workaround so the option can be shown ?
]]>Show the error after the update 1.10
Please see the screenshot https://prnt.sc/qmw-EA7Lmcrg
Please need quick fix. Thank you
]]>I have been using your plugin, and it was working fine until yesterday. For existing/old orders, the license keys are displaying correctly on the order details page for both the admin and customer sides. However, for new orders placed since yesterday, the license keys are not showing up on the order details page, even though the licenses are being created successfully, and the email notifications are being sent without any issues. Could you please investigate and provide a quick fix to resolve this issue? I need to be able to view the license keys for new orders on the order details page.
]]>Hello Team.
When a customer purchases the product and set any quantity like 5, and after checkout customer receives 5 different emails, one for each license.
How do user get all license at one email because order is same.?
Thank you
Hi Guys
I have Elite Licenser lite set up with the woocommerce add on and it all sets up well.
I don’t want to pay to upgrade yet until I have a full understanding of how everything works then I would like to upgrade.
The part I can’t get working or can’t find documentation on is how to add the license hook to my existing plugin.
Any videos or tutorial seems to skip right over it.
Also, can you confirm that the wooocomerce add on cant be on the same site as the Elite Licener Lite? Because I can get it to link if on different sites but not on the same site.
Cheers Guys
Trayci
[ Please do not bump. ]o
]]>In woocommerce in a Variable product, there is no option to select elite licenser, it is only enabled in a single product, any solution?
]]>I just purchased your Elite License software – Life Time license. I am trying to install the woocommerce subscription add-on, but it is not activating. Please advise.
]]>Hello
really an amazing plugin. Thank you very much for your excellent job!
I see in the code that you support WooCommerce Subscriptions, but it doesn’t work for me. I have two issues.
The first issue is that in the function generateLicenseKey() (line 579 of the main file) it’s not detected that the order is related to a subscription.
Modifying your code as following it works for me:
function generateLicenseKey($order_id) {
$order = wc_get_order( $order_id );
//checking subscription
if( function_exists('wcs_get_subscriptions_for_order')) {
$subscriptions_ids = wcs_get_subscriptions_for_order( $order_id, array( 'order_type' => 'any' ) );
foreach( $subscriptions_ids as $subscription_id => $subscription )
if( $subscription->get_parent_id() === $order_id ){
return $this->generateSubscriptionLicenseKey($order, $subscription);
}
}
// it is not subscription
$orderMeta = $order->get_meta_data();
…
But then, even if the license is created as a license subscription, when I run the subscription renewal (manually in WooCommerce => Status => Scheduled Actions => Run woocommerce_scheduled_subscription_payment related to the subscription), the plugin creates a new license instead of updating the current one.
Is it something that the plugin does or a bug? In my opinion, when the subscription is renewed also the license should be renewed without creating a new license.
Thank you very much in advance.
]]>