Krista
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Appointments] Two Step Action links not working – Cancels immediatelyA video? Well, maybe sometime later this weekend when I have some time. But the steps taken were to go into Settings – Mail Notifications and under the Confirmation email, turn on two step action links in email. After doing so, when email was received, users would click the link to cancel and it would still immediately cancel. So, same action as if two step action links were not checked. This was a problem because at least one person’s email client seemed to be opening the links automatically which meant their appointments were being immediately canceled.
After finding the post from 3 years ago which I’ve linked, I went in and made the code change in In easy-appointments/src/mail.php line 167. I commented out the old code, leaving it in the file then put in the new. Once done, if the cancel link (whether using #link_cancel# or #url_cancel# requires confirmation after being opened/clicked.// check maybe it is a two step process
// if (empty($_POST[‘confirmed’]) && (!empty($_POST[‘confirmed’]) && $_POST[‘confirmed’] !== ‘true’)) {
// $this->link_action_additional_step($_GET[‘_ea-action’], $data);
// }
if (empty($_POST[‘confirmed’]) && $_POST[‘confirmed’] !== ‘true’)
{
$this->link_action_additional_step($_GET[‘_ea-action’], $data);
}
- This reply was modified 10 months ago by Krista.
Forum: Plugins
In reply to: [Easy Appointments] Two Step Action links not working – Cancels immediatelyI found this support question/answer from 3 years ago and made the code change. This fixes the issue. Can you please implement the change in the next patch, or let us know why we shouldn’t make this change / whether it causes other problems?
https://wordpress.org/support/topic/two-step-action-links-in-email-broken-fixed/Forum: Plugins
In reply to: [Easy Appointments] Cancel all appointments for a dayThank you! I’ll try that out.
Forum: Networking WordPress
In reply to: admin-ajax.php on WordPress Multisite with ProxyCreated this and put it in my child theme’s functions.php file. Let me know if there are any improvements that can be made to it / if it’s going to cause any issues?
function modify_admin_url_defaults($url, $path, $blog_id, $scheme) {
$internal_domain = ‘lm.a.state.gov’; // Replace with your Internal domain
$host = ‘proxydomain.net’; // Replace with your Proxy domain
if (isset($_SERVER[‘HTTP_X_MS_PROXY’]) && ($_SERVER[‘HTTP_X_MS_PROXY’] == ‘AzureAD-Application-Proxy’)) {
return str_replace($internal_domain, $host, $url);
} else {
return $url;
}
}add_filter( “admin_url”, “modify_admin_url_defaults”, 10, 4 );
Forum: Networking WordPress
In reply to: admin-ajax.php on WordPress Multisite with ProxyI was able to _temporarily_ get this to work by modding core. Can someone tell me how I can do this in the theme functions.php instead?
/wp-includes/link-template.php//function admin_url( $path = ”, $scheme = ‘admin’ ) {
// return get_admin_url( null, $path, $scheme );
function admin_url( $path = ”, $scheme = ‘admin’ )
if (isset($_SERVER[‘HTTP_X_MS_PROXY’]) && ($_SERVER[‘HTTP_X_MS_PROXY’] == ‘AzureAD-Application-Proxy’)) {
return str_replace(‘internaldomain’, ‘proxydomain’, get_admin_url( null, $path, $scheme )); }
else {
return get_admin_url( null, $path, $scheme );}
}Forum: Plugins
In reply to: [Easy Appointments] Report permissionsGreat, thanks!
Forum: Plugins
In reply to: [Easy Appointments] Cannot order form fields – reorder not retainedWordPress 6.4.2 and Chrome Version 120.0.6099.225 (Official Build) (64-bit)
Just tried in Edge Version 120.0.2210.144 (Official build) (64-bit), same problem- This reply was modified 2 years, 2 months ago by Krista.
Forum: Plugins
In reply to: [Easy Appointments] Report permissionsOkay thanks for the response. It’s just a suggestion for a future feature then.
Forum: Plugins
In reply to: [Easy Appointments] Cannot order form fields – reorder not retainedYes, I saved after reordering. Then I to save after each individual movement too, neither worked.
Forum: Plugins
In reply to: [Easy Appointments] Turn off form AutocompleteNevermind, I found the save_form_content=”0″ setting.
Forum: Plugins
In reply to: [Easy Appointments] Cannot order form fields – reorder not retainedI had to manually change the order in the database. Please fix this in new release.
Forum: Plugins
In reply to: [PDF Builder for Ninja Forms] Set permissions for EditorOops, I resolved the wrong one, this question is still open!
It isn’t letting me configure the Netbios name in NADI. When I looked that up it says it should be detecting it automatically now?
Hmm, okay I manually modified the REMOTE_USER variable and it still didn’t work. It looks like the plugin isn’t filling in / sending the sAMAccountName or userPrincipalName when trying to login via SSO, but it does if I type in the login and password.
I guess I’m stuck. I don’t know what/if I’m missing a configuration setting or if something needs to be done on the AD side of the house to get this to work?
I have also tried mod_authnz_sspi with the exact same results.