psm9640
Forum Replies Created
-
Hi Kevin – I ran the CLI and it was successful. New theory we’re working with is that our host is somehow blocking the request. To confirm, should we be seeing a post request in our server logs when we publish to Apple News (we are not currently — just getting the INVALID_TYPE error mentioned earlier).
Thank you!
Hi Kevin – Back again. I have not been able to resolve issue but wanted to pick your brain…
I’m seeing the following message in our in the wp-admin under Apple News > Sections:
Unable to fetch a list of sections.
Aside from the obvious (incorrect .papi info), could inability to retrieve sections from our Apple News account be to blame? Thank you again — I know this is not the plugin’s issue but I have very little recent experience with Apple News so just trying to gather as much info as possible.
Thank you, Kevin! I appreciate it!
Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA] big problem with commentsFor our site it was both logged in and non-logged in.
Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA] big problem with commentsSame: the default “I’m not a robot” button stopped showing up altogether on our site. Rolled back to an older version and had to turn auto-updates off.
- This reply was modified 7 years, 5 months ago by psm9640.
I’ll give it a shot soon. It was an auto-update of the plugin I believe but we tried to log in in the AM and that behavior started for us. Not 100% sure but admins may have been the only ones effected.
Forum: Plugins
In reply to: [Press75 Long Form Storybuilder] Missing body tagNP – thank you!
Forum: Plugins
In reply to: [Theme My Login] Getting an error on failed login with TML 6.3.6Thanks Jeff — Shortcode needed to be updated. Appreciate the response!
Forum: Installing WordPress
In reply to: Our site went blank on upgrade to 3.0.4 as wellNot initially, but we renamed the twentyten directory to our custom theme directory name temporarily to see if that resolved it and it did not, hence why we want to try a from-scratch installation.
Forum: Plugins
In reply to: Allow Editor role to save custom optionsWell for my purposes guys I just needed to be able to create a textarea where someone could update a brief message on the home page. To that end, I just used a dashboard widget and it worked for my editor level requirements.
Is it possible that by it’s very definition of “admin_menu” that you can’t get around permissions on saving? Wish there was more clarification/better tutorials on this…
Forum: Plugins
In reply to: Allow Editor role to save custom optionsCount me 3 – I think it’s something happening after the submit action but if there’s a hidden field for authentication, I’ve yet to come across any blog/forum posts on it. Hopefully someone in the know eventually responds.
Forum: Fixing WordPress
In reply to: Redirect after login always goes to profile edit?Hey Trey –
I resolved my issue. As soon as I removed a couple of the other plugins I’d tried and removed some custom functions I’d also tried (that I thought I’d deleted), it started working for me. This was all at the theme level for me. Here’s my custom login script since the default redirect_to didn’t seem to want to work (you’ll notice I added it to the form action url):
<form name="loginform" id="loginform" action="<?php echo site_url('wp-login.php', 'login_post') ?>?redirect_to=https://<?=$_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];?>" method="post"> <p> <label><?php _e('Username') ?><br /> <input type="text" name="log" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" tabindex="10" /></label> </p> <p> <label><?php _e('Password') ?><br /> <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label> </p> <?php do_action('login_form'); ?> <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /> <?php esc_attr_e('Remember Me'); ?></label></p> <p class="submit"> <input type="submit" name="wp-submit" id="wp-submit" value="<?php esc_attr_e('Log In'); ?>" tabindex="100" /> <input type="hidden" name="redirect_to" value="https://<?=$_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];?>" /> <input type="hidden" name="testcookie" value="1" /> </p> </form>
Forum: Fixing WordPress
In reply to: Redirect after login always goes to profile edit?I’m in the same boat. I want the simple functionality of a subscriber being able to log in and be automatically returned to the page they were on.
I’ve tried adding a redirect_to hidden field with the login current page url on the login form and I’ve also tried adding ?redirect_to=current_page_url on the form action and nothing works.
Peter’s Redirect plugin is the closest solution I’ve found except it forces you to set one page and one page only for redirection based upon user roles.
Forum: Fixing WordPress
In reply to: Add Media – Insert Image in Post not workingUN-FREAKIN-BELIEVABLE!!!!!
Mixed-capitalization was the issue for me too (same as ejk mentioned!)…
AHHHHHHRRRRGGGGGHHHHHH… at least it works now!!!:)