dberg89
Forum Replies Created
-
Hi,
The field IS required and IS NOT editable by users.Thanks
Issue solved if anyone else is interested in removing a core function.
add_action ('init', 'remove_functions'); function remove_functions () { global $ultimatemember; remove_action('um_profile_header', 'um_profile_header', 9 ); }note: priority has to match.
Also tested this with plugins off and with the Predefined Country Dropdown and still nothing is getting written to the database.
There are 2 places that you can set Login redirection.
1. Set the Forms>Login Form to “default”
2. Go to your User Roles>Whatever Role then set the Login Options to whatever URL you want. See if that works for you.Cheers
Hi
I tried adding a remove_action(‘um_profile_header’, ‘um_profile_header’, 9 ); in my functions.php but it’s not responding and continues to execute the profile header.I tried remove_action(‘init’, ‘um_profile_header’, 9 ); thinking it needed to be hooked into init.
What am I missing?
Thank you again
Hi
Thank you for your response. I tried adding a remove_action(‘um_profile_header’, ‘um_profile_header’, 9 ); in my functions.php but it’s not responding and continues to execute the profile header.I tried remove_action(‘init’, ‘um_profile_header’, 9 ); thinking it needed to be hooked into init.
What am I missing?
Thank you
AustinBike
This is located in the UM settings > emails section under pending review email.
hope that helps
Nevermind. Just used a css :before statement to hard code a prefix in front of the name.
Thanks
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Ask for ESTIMATE without being logged inHi,
Thank you for the timely response. Wonderful plugin by the way.I’ve managed to solve the issue in 2 ways:
1. Create a loop to parse the COOKIE and produce the output to the textarea of the “additional notes”. This process is a bit consuming as you have to change several files and remove/add too much code as well as create AJAX calls show success.
2. Grab the Gravity Forms plugin that allows for dynamic field population and write a simple hook that parses the COOKIE and uses a shortcode to output the content to any field in gravity forms. Embed your new form anywhere or create a button to call the form in a modal window. Problem solved and better customization of the form. This was my choice.
Hope this helps someone.
Thank you again.
Cheers