wpgenie

woocommerce-product-vendor email integration

Dec 21st, 2023
1,426
0
Never
12
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.20 KB | None | 0 0
  1. add_filter( 'woocommerce_email_recipient_auction_fail', 'custom_add_vendor_to_email_recipients', 50, 2 );
  2. add_filter( 'woocommerce_email_recipient_auction_finished', 'custom_add_vendor_to_email_recipients', 50, 2 );
  3. add_filter( 'woocommerce_email_recipient_auction_relist', 'custom_add_vendor_to_email_recipients', 50, 2 );
  4. add_filter( 'woocommerce_email_recipient_bid_note', 'custom_add_vendor_to_email_recipients', 50, 2 );
  5. function custom_add_vendor_to_email_recipients( $recipient, $object ) {
  6.  
  7.     if ( ! is_object( $object ) ) {
  8.         return $recipient;
  9.     }
  10.  
  11.     $key         = false;
  12.     $author_info = false;
  13.     $arrayrec    = explode( ',', $recipient );
  14.  
  15.     $post_id     = method_exists( $object, 'get_id' ) ? $object->get_id() : $object->id;
  16.     $vendor_id = WC_Product_Vendors_Utils::get_vendor_id_from_product( $post_id  );
  17.  
  18.     if ( ! empty( $vendor_id ) ) {
  19.         $vendor_data = WC_Product_Vendors_Utils::get_vendor_data_by_id( $vendor_id );
  20.         $vendor_email = $vendor_data['email'];
  21.     }
  22.  
  23.     if ( $vendor_email ) {
  24.         $recipient = str_replace( '[woocommerce-product-vendor]', $vendor_email, $recipient );
  25.  
  26.     } else {
  27.         $recipient = str_replace( '[woocommerce-product-vendor]', '', $recipient );
  28.     }
  29.     return $recipient;
  30. }
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • utkuyulgen
    131 days
    # CSS 0.84 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 38% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from Swapzone — instant swap).
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment