Commit 5450a848 authored by Varun Sridharan's avatar Varun Sridharan

Fixed issue

Fatal error: Call to a member function get_cart() on null in /home/#######/public_html/wp-content/plugins/woocommerce-quick-donation/woocommerce-quick-donation.php on line 96
parent 47e11936
......@@ -94,6 +94,7 @@ class WooCommerce_Quick_Donation {
public function check_donation_exists_cart(){
global $woocommerce;
$found = false;
if(empty($woocommerce)) {return;}
if( sizeof($woocommerce->cart->get_cart()) > 0){
foreach($woocommerce->cart->get_cart() as $cart_item_key=>$values){
$_product = $values['data'];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment