wlepera
Forum Replies Created
-
Thanks for this update. As I am running a pre-Gutenberg WP version 4.9.8, I’m not certain how “painless” an update to the current Gutenberg-enabled version would be. So, I’ll wait for the update to be released. I’m glad your team is putting some urgency on this – this is the time of year where many non-profits do the bulk of their fundraising, and online donations are a significant portion of this. Thank you again.
I tried this and it did work, but ultimately I followed your suggestion and moved the gallery to a new page. The table now contains a link to the page with the gallery.
Thank you for your help.
Thank you for your reply. I went to my site this morning (in Firefox) to try your suggestion, and found the Donation form was displaying properly, even though I had not yet logged in. Looks like this might be an intermittent problem and tough to track down.
Hi, I’m seeing a similar problem. In Firefox, Chrome, and and IE, my donation form is prompting users to login, even though the form has “Guest Donations” set to “Enabled”. My form is live (not in test mode) and I’m pretty sure this worked when I originally set it up, but that was several versions of WordPress and Give ago. If I login, the donation form displays correctly. Currently using WP 4.7.3 and Give 1.8.4.
Thanks
Forum: Themes and Templates
In reply to: [Llorix One Lite] Issue with Give Plugin donation formHere is the WordPress link to the Give plugin:
https://wordpress.org/plugins/give/
The Give plugin author also looked into this issue and posted some code to add to the theme’s functions.php file. This resolved the issue. Here is a link to that support thread.
Thank you for investigating!
That did it, with your new code in functions.php, the form now renders correctly no matter what the size of the browser window.
Thank you very much for investigating and providing a solution!
Forum: Themes and Templates
In reply to: [Poseidon] Image slider on Static HomepageThank you for your response. It’s clear now the feature is intended to click through featured images of different blog posts. This is a cool feature, but not what I’m looking for. I have seen some other themes that allow you to use a slider control to click though a series of pre-loaded images. I had assumed the slider feature in Poseidon was the same thing.
Thanks for clearing this question up.
My apologies for the delayed response. Thank you for looking into the issue.
The site is staging.jenniefoundation.org. From the home page, click “Donate” on the menu to bring up the Give form. As you resize the browser window to make it wider or narrower, you should see the the issue. At present, the featured image is not enabled on the form, as it was when I wrote the original post.
I have also been experimenting with other WordPress themes, and can say this problem is not unique to Llorix-one-lite, although some of the other themes I tried will display the Give form properly not matter what the width of the window (Poseidon, for instance). Given the popularity if the Give plugin, I have no doubt it works for the majority of themes.
Thanks again!
Forum: Plugins
In reply to: [Clean Login] “Login Expired” hook?I’m not sure how to answer the question…
In my version of WordPress, I can see the message I received in the file wp-login.php:
858 if ( $interim_login ) { 859 if ( ! $errors->get_error_code() ) <strong>860 $errors->add( 'expired', __( 'Your session has expired. Please log in to continue where you left off.' ), 'message' );</strong> 861 } else { 862 // Some parts of this script use the main login form to display a message 863 if ( isset($_GET['loggedout']) && true == $_GET['loggedout'] ) 864 $errors->add('loggedout', __('You are now logged out.'), 'message'); 865 elseif ( isset($_GET['registration']) && 'disabled' == $_GET['registration'] ) 866 $errors->add('registerdisabled', __('User registration is currently not allowed.')); 867 elseif ( isset($_GET['checkemail']) && 'confirm' == $_GET['checkemail'] ) 868 $errors->add('confirm', __('Check your email for the confirmation link.'), 'message'); 869 elseif ( isset($_GET['checkemail']) && 'newpass' == $_GET['checkemail'] ) 870 $errors->add('newpass', __('Check your email for your new password.'), 'message'); 871 elseif ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] ) 872 $errors->add('registered', __('Registration complete. Please check your email.'), 'message'); 873 elseif ( strpos( $redirect_to, 'about.php?updated' ) ) 874 $errors->add('updated', __( '<strong>You have successfully updated WordPress!</strong> Please log back in to see what’s new.' ), 'message' ); 875 }This code snippet is executed in both the “login” and “default” branches of a switch statement earlier in the Main function.
424 do_action( 'login_init' ); 425 /** 426 * Fires before a specified login form action. 427 * 428 * The dynamic portion of the hook name, <code>$action</code>, refers to the action 429 * that brought the visitor to the login form. Actions include 'postpass', 430 * 'logout', 'lostpassword', etc. 431 * 432 * @since 2.8.0 433 */ 434 do_action( 'login_form_' . $action ); 435 436 $http_post = ('POST' == $_SERVER['REQUEST_METHOD']); 437 $interim_login = isset($_REQUEST['interim-login']); 438 439 switch ($action) {Thank you for looking into this!
Thank you – I just got a reply from my web hosting service with exactly the same recommendations. I did not realize there was more than one .htaccess file, so only looked at the version in the root of my site. Sure enough, there was another .htaccess in the wp-admin directory that had an “allow from <local IP addr>” stanza, followed by a “deny all” stanza. When I commented out the “deny all”, the ajax message went away. I must have added this months ago and forgot about it.
I will remove the wp-admin/.htaccess and add the code above to the root version.
As an aside – and admittedly off-topic – is it safe to remove the “deny all”? I thought adding this line prevented web admin access from IP addresses not specifically allowed by other stanzas. Seems like a good thing.
Thanks again.
Forum: Plugins
In reply to: [Clean Login] Clean Login forms not showing upUser error – I had old bookmarks that had the default WP login page targeted.