Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rajukumargupta/whmcsbundleproductremove

when a customer order a bundle product remove a product from cart . This hook will remove other product as well
https://github.com/rajukumargupta/whmcsbundleproductremove

Last synced: about 2 months ago
JSON representation

when a customer order a bundle product remove a product from cart . This hook will remove other product as well

Awesome Lists containing this project

README

        

# whmcsbundleproductremove
when a customer order a bundle product remove a product from cart . This hook will remove other product as well

Create a hook file inside whmcs hook folder. i.e whmcsrootfolder/includes/hooks/removebundlercart.php and put this code to file.

$products) {
if ($bundleproduct == $products['bnum']) {
unset($_SESSION['cart']['products'][$key]);
}
}
}
?>