XCTrails
Forum Replies Created
-
Forum: Plugins
In reply to: [Leaflet Map] Underline side effects from WP themes on buttonsGreat, the first 2 work for the zoom button :-), but the strange line in the popup is something else, i.e. the text-decoration rule doesn’t affect anything.
Thank you, that looks like all the starting point I needed!
Forum: Fixing WordPress
In reply to: Creating events from a spreadsheetThanks and sorry – I thought the topic tag I used would put it into that part of the forum actually.
Forum: Plugins
In reply to: [WP Email Users] Sending to role not workingI debugged a bit and found the reason why it fails in my case: I have roles with blanks in their name, when they were created, WP apparently translated the blanks into “-” for the role IDs, while your plugin translates them to “_”, i.e. get_users (wp-email-users.php:1006) doesn’t find anything.
Additionally, I have UltimateMember installed, they translate roles names to from “My Role” to um_my-role”, i.e. your plugin can”t handle such roles either.
Thanks, I’ll look into that!
Forum: Plugins
In reply to: [WP Email Users] Sending to role not workingI observe the same bug (with the latest WP 4.9.8)
So I figure I would need an additional apply_filter (?) in EM_Event_Post_Admin::trashed_post so that I can hook into that from my own code…?
Ok, $EM_Booking->person_id holds the ID of the user who made the booking, $EM_Booking->get_person() returns the user who confirmed/denied/etc. the booking.
Ok, figured that out myself:
add_action( 'um_after_email_confirmation', 'my_after_email_confirmation', 10, 1 ); function my_after_email_confirmation( $user_id ) { // do something }
Hi,
UM version is 2.0.25 (Woocommerce is 3.4.5, WP is 4.9.8, PHP is 5.6.30/XAMPP)
“Force hiding adminbar in frontend?” is not checked for the role
Issue remains with only Woocommerce and UM active and the the set to Twenty Fifteen.
Thanks,
ArminThanks, maybe I wasn’t clear enough in my question. Actually, I need the user who booked the event. i.e. neither the current login user (this would be an admin who confirms or denies a booking nor the event owner.
Further to that: It seems as if when I change only the UM role, the $role param for um_after_user_role_is_updated is set to the old role
Great, thanks a lot!
I submitted a ticket on the support site and got some responses without a solution, but I stopped (for now) once they asked me for login on my server
Further to that: I managed to install the same archive into my local XAMPP, it also modified the .htaccess file so that fact and the archive (plugins, wp version etc.) should not be the reason?