Title: rsdkd's Replies | WordPress.org

---

# rsdkd

  [  ](https://wordpress.org/support/users/rsdkd/)

 *   [Profile](https://wordpress.org/support/users/rsdkd/)
 *   [Topics Started](https://wordpress.org/support/users/rsdkd/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rsdkd/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rsdkd/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rsdkd/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rsdkd/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rsdkd/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Germanized for WooCommerce] Woocommerce verschickt keine Versandbestätigung](https://wordpress.org/support/topic/woocommerce-verschickt-keine-versandbestatigung/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/woocommerce-verschickt-keine-versandbestatigung/#post-13600883)
 * Hallo,
 * ich meine jetzt das Problem verstanden zu haben – das Plugin, welches die Trackingnummern
   hinzufügt, versucht das bei der Standard-Woocommerce Email “Bestellung abgeschlossen”
   zu machen.
    Diese gibt es aber mit installiertem Germanized nicht mehr – gibt
   es bei Germanized eine Email, die rausgeht, wenn die Bestellung abgeschlossen
   ist?
 * Grüße
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Germanized for WooCommerce] Woocommerce verschickt keine Versandbestätigung](https://wordpress.org/support/topic/woocommerce-verschickt-keine-versandbestatigung/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/woocommerce-verschickt-keine-versandbestatigung/#post-13597512)
 * Hallo,
 * müsste aber die “versendet” Email nicht trotzdem verschickt werden?
 * Grüße
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Germanized for WooCommerce] Woocommerce verschickt keine Versandbestätigung](https://wordpress.org/support/topic/woocommerce-verschickt-keine-versandbestatigung/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/woocommerce-verschickt-keine-versandbestatigung/#post-13597480)
 * Danke schonmal für die schnelle Antwort,
 * unter den Logs finden sich nur Logs von facebook_for_woocommerce und paypal. 
   Muss ich erst Logs aktivieren dazu?
 * Im Backend haben die Sendungen den Status “Versendet” und ich kann dort auch 
   die Shipping-ID einsehen:
    [https://cupverde.coffee/wp-content/uploads/2020/10/WooScreen-scaled.jpg](https://cupverde.coffee/wp-content/uploads/2020/10/WooScreen-scaled.jpg)
 * Hier nochmal die Übersicht der aktivierten Emails. “Rechnung (PDF)” wird aktuell
   verschickt – hatte ich aber auch nicht aktiviert.
    [https://cupverde.coffee/wp-content/uploads/2020/10/WooScreen2-scaled.jpg](https://cupverde.coffee/wp-content/uploads/2020/10/WooScreen2-scaled.jpg)
 * Ich werde leider nicht schlau daraus – mir fällt kein Grund ein, weshalb die 
   Email nicht rausgehen sollte, selbst wenn die “Rechnung (PDF)” jetzt zusätzlich
   verschickt wird.
 * Grüße
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Registration & Membership - Free & Paid Memberships, Subscriptions, Content Restriction, User Profile, Custom User Registration & Login Builder] Extra information in admin overview](https://wordpress.org/support/topic/extra-information-in-admin-overview/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/extra-information-in-admin-overview/#post-13136270)
 * Can you please give me another hint?
 * Thank you : )
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Registration & Membership - Free & Paid Memberships, Subscriptions, Content Restriction, User Profile, Custom User Registration & Login Builder] Extra information in admin overview](https://wordpress.org/support/topic/extra-information-in-admin-overview/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/extra-information-in-admin-overview/#post-13117043)
 * Thanks for your reply.
 * But it still does not work, the row is there in the User overview, but no Info
   inside. Does not matter if the checkbox was checked or not – the row stays empty.
 * I added this code:
 *     ```
       /**
       * Add the column header
       *
       * @param array $columns
       *
       * @return array
       */
       function ur_add_column_head( $columns ) {
           if ( ! current_user_can( 'edit_user' ) ) {
            return $columns;
           }
   
         $columns['ur_extra'] = __( 'Werbung', 'user-registration' );
         return $columns;
       }
   
       /**
       * Set the Column value for each user in the users list
       *
       * @param string $val
       * @param string $column_name
       * @param int $user_id
       *
       * @return string
       */
       function ur_add_column_cell( $val, $column_name, $user_id ) {
   
            if ( ! current_user_can( 'edit_user' ) ) {
               return false;
            }
   
           $val = '';
           if ( $column_name == 'ur_extra') {
       		$val = get_user_meta( $user_id, 'check_box_1592818500818', true );
              return isset( $val ) ? $val : '';
           }
          return $val;
       }
       ```
   
 * And this is the checkbox field name: **check_box_1592818500818**
 * I think thats all correct? But still no Info in the Admin overview.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Registration & Membership - Free & Paid Memberships, Subscriptions, Content Restriction, User Profile, Custom User Registration & Login Builder] Redirect after registration](https://wordpress.org/support/topic/redirect-after-registration-29/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [6 years ago](https://wordpress.org/support/topic/redirect-after-registration-29/#post-13094180)
 * Ah, I was too quick.
    This works for login, but not for registration?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Registration & Membership - Free & Paid Memberships, Subscriptions, Content Restriction, User Profile, Custom User Registration & Login Builder] Redirect after registration](https://wordpress.org/support/topic/redirect-after-registration-29/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [6 years ago](https://wordpress.org/support/topic/redirect-after-registration-29/#post-13094163)
 * Thank you.
    And sorry for not checking the documentation. I am not used to using
   a plugin that actually _has_ a documentation 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Hustle - Email Marketing, Lead Generation, Optins, Popups] Excluding pages does not work](https://wordpress.org/support/topic/excluding-pages-does-not-work/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [6 years ago](https://wordpress.org/support/topic/excluding-pages-does-not-work/#post-13009443)
 * Update: I fixed it by putting the exceptions in one single exception, not two
   separate ones
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShiftNav - Responsive Mobile Menu] Page content disappearing when menu slides out](https://wordpress.org/support/topic/page-content-disappearing-when-menu-slides-out/)
 *  Thread Starter [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [6 years ago](https://wordpress.org/support/topic/page-content-disappearing-when-menu-slides-out/#post-13004894)
 * I fixed it by removing a css edit I did::
 * .box-wrapper {
    height:100vh !important; width:100vw !important; /*position:fixed;*/}
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShiftNav - Responsive Mobile Menu] Move the hamburger down?](https://wordpress.org/support/topic/move-the-hamburger-down/)
 *  [rsdkd](https://wordpress.org/support/users/rsdkd/)
 * (@rsdkd)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/move-the-hamburger-down/#post-12925192)
 * What you want is:
 *     ```
       #shiftnav-toggle-main-button {
           padding:25px !important;
       }
       ```
   

Viewing 10 replies - 1 through 10 (of 10 total)