Michelle Panulla
Forum Replies Created
-
Forum: Plugins
In reply to: [TBTestimonials] Output Settings: conditional on gravatar?Thanks, Travis! I realized later that I couldn’t do the page template, because I needed the rotating widget to do the same thing. I figured it out, though. =)
Forum: Fixing WordPress
In reply to: RSS Feed- Feedburner feed not found, 404 errorI am having the same problem with http://weddingsonkauai.com/feed. Feedvalidator.org gets a 404 error, but then displays the feed below. Ismyblogworking.com also gets a 404 error.
The feed is browsable, though. I’ve searched and searched and tried disabling all plugins, changing permalinks back to default, etc., and nothing has worked. The validators all still see a 404 error.
I’ve also read a handful of posts here in the forums that have the same problem, the user can’t find a fix, and then suddenly their feeds are magically working again. I guess I haven’t been that lucky. 😉
Soooo, yes – if anyone knows of any other ideas to try, I’m game.
Thanks!
MichelleForum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Cycle Not WorkingOkay, anyone reading this: Travis figured out that wp-minify and TBTestimonials did not play nicely together. Everything is working now.
Thanks, Travis!
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Cycle Not WorkingURL sent. Thanks for being so responsive!
Forum: Plugins
In reply to: [TBTestimonials] [Plugin: TBTestimonials] Cycle Not WorkingI’m having this problem as well. The option to loop through them all is checked, but I am only seeing a static listing of one after the other. I’ve also toggled the jQuery disabling to see if that was the issue, but no such luck.
I’m using the Genesis framework with a customized Prose child theme on this site, and there are other sidebar-related conflicts, so I’m wondering if the causes of the bugs are related. I noticed that both the Prose theme and TBTestimonials use a function called “settings_fields”. Could it be a conflict with same-named functions?
Thanks!
Forum: Fixing WordPress
In reply to: Possible to use wpdb->prepare with partial query strings?Ah, never mind! I figured it out.
Forum: Fixing WordPress
In reply to: User password works for a while, then doesn'tThe problem may have been that these clients were in different countries. When I set the passwords in the USA, the clients couldn’t make them work in Canada or Belize. Just changing the password in the database fixed the problem for Belize, but not Canada. I had to change the password for Canada to one that only contained letters, no numbers or special characters. From there, the client could log in and change the password to something stronger with special characters.
Oh believe me, I did. Several times. Something about having a clean WP database in there before I imported my backup copy was throwing it off. No idea why, since the import overwrites what’s already there, but something was definitely going wrong. Thankfully deleting that clean copy and then importing the backup worked.
Had to completely wipe database and WP install, but starting over seems to have fixed this.
I should note that I also moved the client site to another hosting company. I copied over every file, though. Are there files associated with the NGG plugin that are not in the plugin directory? Something that could have been overwritten during the upgrade, but that I can restore from my backup?
Forum: Plugins
In reply to: [Share and Follow] [Plugin: Share and Follow] FeedBurner feedsThere are two ways – you can either choose the feedburner icon instead of the RSS feed, or do what I do: choose the RSS icon and select the RSS2 radio button that follows it, and install another plugin that directs all your feeds to feedburner (such as Feedburner Feedsmith or my new favorite FD Feedburner Plugin).
Forum: Fixing WordPress
In reply to: Making post titles *not* be permalinks?Oh sorry – didn’t realize you wanted them off in the body, too, and not just the sidebars. Remove the colon after the “a” on line 36.
Forum: Fixing WordPress
In reply to: Making post titles *not* be permalinks?It’s possible you saw the code before my edit. I accidentally posted a version first that only took them off the one section. See the new code, and lemme know if it’s still not working. =)
Forum: Fixing WordPress
In reply to: Making post titles *not* be permalinks?Ah, they have a class applied to them, but there’s no rule set up for it. Just go to the end of your CSS file and put in the following.
.sidebar1 a { text-decoration: none; }Forum: Fixing WordPress
In reply to: Making post titles *not* be permalinks?Oh, yeah – sorry. My bad. Your code on line 66 is still telling your header link to be blue. You should change
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color:#435F97; }to
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color:#000000; }This will cause any links in headers to be black, though, so you may want to add a special rule for the h2 header below your other code like this
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color:#435F97; } h2 a { color:#000000 }in order to preserve the blue color on the other header links.
Apologies for missing that part!