rsdkd
Forum Replies Created
-
Forum: Plugins
In reply to: [Germanized for WooCommerce] Woocommerce verschickt keine Versandbest?tigungHallo,
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
In reply to: [Germanized for WooCommerce] Woocommerce verschickt keine Versandbest?tigungHallo,
müsste aber die “versendet” Email nicht trotzdem verschickt werden?
Grü?e
Forum: Plugins
In reply to: [Germanized for WooCommerce] Woocommerce verschickt keine Versandbest?tigungDanke 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.jpgHier 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.jpgIch 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
Can you please give me another hint?
Thank you : )
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.
Ah, I was too quick.
This works for login, but not for registration?Thank you.
And sorry for not checking the documentation. I am not used to using a plugin that actually has a documentation ??Update: I fixed it by putting the exceptions in one single exception, not two separate ones
I fixed it by removing a css edit I did::
.box-wrapper {
height:100vh !important;
width:100vw !important;
/*position:fixed;*/
}Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] Move the hamburger down?What you want is:
#shiftnav-toggle-main-button { padding:25px !important; }