Becky
Forum Replies Created
-
Based on your helpful info, I was able to track down the source of the problem with Captivate’s feed, do a workaround in my account, and then test your plugin. It’s so well done! Just picked up the pro version. Thanks!
Thank you—I’ve reached out to them to see what they say. Appreciate it.
Thanks, here’s the feed: https://feeds.captivate.fm/secondversepod/
It occurred the development site but was resolved on the production site. Please disregard.
I too am seeing this behavior. After completing the form once, the content shows even if I switch browsers, use incognito mode, etc. The way this plugin is supposed to work it would meet my need perfectly, but it’s not functioning correctly.
Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] Checkout “Request for Quote Received”Wonderful! Glad I could contribute, and thrilled at your quick resolution!
Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] Checkout “Request for Quote Received”No, I had changed the status to pending payment before making the payment (it was a test transaction). But the completion page still showed the same message both for the quote and the payment.
Forum: Plugins
In reply to: [jQuery Responsive Select Menu] Mobile Screen Too WideHi Mickey,
I had changed the CSS to inline-block so I could center with margin: auto and that seemed to cause the problem (although when I first installed it seemed to be stretching the page too). After I changed the CSS back to block it’s working great, so false alarm!
Thanks for a great plugin!
BeckyForum: Fixing WordPress
In reply to: Site sometimes loads with no content and menu missingI couldn’t replicate the problem, but I did see that the text in the body of your home page seems to have been copied over from Microsoft Word (Word always brings with it a style class of “MsoNormal”). This could potentially cause problems with standards-compliant browsers. Something to watch for and clean up.
That’s great news! Glad you got it resolved, and that I could contribute in any way!
Forum: Fixing WordPress
In reply to: Home Widget 1Widgets are edited in the Dashboard: Appearance > Widgets. Comments are turned on and off in Settings > Discussion.
No, the link you shared about static pages refers to older versions of WordPress before the setting could be done in the Reading pane. Since all the pages redirect, the next thing to check is your .htaccess file on your server. If there’s a redirect set up there with a wildcard that encompasses the whole site, that would explain it. It doesn’t seem to be a PHP issue, but either a server- or plugin-based issue.
Forum: Fixing WordPress
In reply to: How to remove the 'set up by'If you can determine the code surrounding that text, you can hide it using CSS (display:none;), but I can’t be more specific without seeing the actual site.
Forum: Fixing WordPress
In reply to: Question Can I add a wordpress widget here?Yes, you can add a widget anywhere. You need to edit the functions file, creating a new instance of a widget area (so it will populate the back end of your site with a widget location), and then you past into the page template file the html/php code that places the widget area where you want it on the page.
Here’s a pretty good tutorial. But it’s preferable to do this in a child theme so that updates to the default theme don’t break your modifications down the road. In that case you might need to create a functions file, start it with
<?phpand then paste in the new function (modified for your needs). You may also need to copy over the page template to modify it.
Forum: Fixing WordPress
In reply to: Separate Blog Posts on Multiple PagesThere are a number of shortcode plugins that will enable you to isolate posts by category with something simple, like:
[catlist name=”<desired category>”]
If you have at least one unique category to separate the podcast episodes, you can stream it with a shortcode into the individual pages.