greencouch
Forum Replies Created
-
Forum: Plugins
In reply to: [Post SMTP Mailer/Email Log] Grant permission with Google leads to 403 error?I’m having the same issue. I’m trying to reverify through Google but the redirect link (which looks similar to yours, but a different domain of course), goes to a 404 page.
Forum: Plugins
In reply to: [Post SMTP Mailer/Email Log] Suddenly Losing OAuth on multiple sitesWe’re having the same issue. Although in our case, we can’t fix it because we can’t reauthenticate with Google–we get a a 404 error on the final step (redirect page). I’ve confirmed that the redirect URL is correct (in fact, it correctly redirects to the plugin’s landing page if I remove the text string at the end of it.)
- This reply was modified 1 year, 10 months ago by greencouch.
For others searching for a solution, we wound up switching to “Recent Posts Widget With Thumbnails” instead. Works very similarly, but has no accessibility errors.
Forum: Plugins
In reply to: [Yoast SEO] gutenberg 3.7.0 and yoas seo error (new)Same issue here.
Forum: Plugins
In reply to: [Facebook Social Stream] Feed not auto-updating@daniele-angileri – Can you please provide the info for the chron job in order to auto-update the theme?
Forum: Fixing WordPress
In reply to: Visual Editor Tab not workingThis thread is kinda old, but I figured I’d add what worked for me. In my case, tinymce wasn’t loading because it was being blocked by an htaccess file in the wp-includes folder (placed there by the Sucuri website security plugin.) If I deleted that htaccess file, the visual tab editor was restored. I didn’t want to leave the folder vulnerable, so I left the htaccess file as-is, but instead tried deactivating and reactivating the Sucuri plugin. In worked. No further issues and the visual tab is now working.
- This reply was modified 4 years, 10 months ago by greencouch.
Forum: Plugins
In reply to: [Simply Static] Only exporting the home pageSame here. I posted about this a month ago but received no response, except from another person saying they were experiencing the same issue..
(https://wordpress.org/support/topic/not-saving-sub-pages-am-i-missing-something/)
Forum: Plugins
In reply to: [Facebook Social Stream] Feed not auto-updating@daniele-angileri Is there a way to change the settings so that it updates at a regular interval automatically? Like every hour or every 30 minutes… (Rather than by being triggered by a visitor)?
Forum: Plugins
In reply to: [Facebook Social Stream] Feed not auto-updating@yolandal I’m having the same problem. I’m wondering if another plugin is interfering. By any chance, do you use WordFence, iThemes Security, or Sucuri Security?
Forum: Plugins
In reply to: [Gravitate Encryption] Apply Encryption Only to Certain Fields?You are my hero. THANK YOU.
Hi Sarah,
I’m not sure you’ll get this update, since your most is a month old, but I was having a similar issue with Mailchimp. As far as I can tell, the issue seems to be related to a WordPress update that enables responsive images. The downside is that it creates “mixed content” red flags on many browsers, because Mailchimp pulls images via https, but many WordPress sites are set to publish images via http.
The only solution I found was to install and enable the “Disable Responsive Images” plugin. That did the trick.
That’s what I suspected. It looks like the host had some issues with server migration last night, and I’m wondering if this was all part of whatever they were doing.
Thanks for the input!
Please ignore the “strong” in the code above. I was trying to emphasise part of the code, but forgot it would render in raw code instead.
Forum: Plugins
In reply to: [YUZO] Yuzo Widget – Use my theme's built-in section header?Another update regarding the vertical centering of titles next to their images in the widget.
As a reference to others, I added the following code to my CSS to make it work. Keep in mind that I’m not showing excerpts, just post titles. You may have to add more code if you include excerpts as well:
.link-list { display: table-cell !important; vertical-align: middle; width: 100%; } .yuzo-list { display: table !important; }
Forum: Plugins
In reply to: [YUZO] Yuzo Widget – Use my theme's built-in section header?Follow-up: It looks like if I can change the Yuzo heading to h1 instead of h3, the styling will apply correctly in my theme. I just created duplicate styling of the h1 and h3 headings in the sidebar’s CSS, and that did the trick. Thanks!