This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| replace fb-callback.php, we have split the first and last names so they register in database seperately, | |
| changed password generation slightly to use random uuid as part of phase out of old Token::generate(); | |
| TODO: Shouldnt we realy force the user to set a password on first login ? Shouldnt we require user to verify email aswell? | |
| maybe we could do both in one email? user registers via fb -> receives verify email with link to create new password -> user creates password which verifys account | |
| add the above generate_uuid4() function to us_helpers. | |
| which incidently can be used in admin_backup.php to name the zips like: b6b42970-a25d-4bf8-b782-92fc3b5e7338 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'template_redirect', 'remove_product_from_cart' ); | |
| function remove_product_from_cart() { | |
| // Run only in the Cart or Checkout Page | |
| if( is_cart() || is_checkout() ) { | |
| // Set the product ID to remove | |
| $prod_to_remove = 56; | |
| // Cycle through each product in the cart | |
| foreach( WC()->cart->cart_contents as $prod_in_cart ) { |
OlderNewer