MacDoodle
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Selectable Recipient with Pipes no longer workingtreb – let me clarify something…
“your-name” & “your-email” refer to the name of the form fields where the sender’s name an email are collected and the tags I quoted above should be setup accordingly.
Forum: Plugins
In reply to: [Contact Form 7] Selectable Recipient with Pipes no longer workingCheck your “From” field – it should be
[your-name] <[your-email]>If it’s just
[your-email]then the upgrade might be resetting it to that.In my case I thought another person with access to the admin had changed it, but now I’m not so sure it wasn’t the upgrade.
Forum: Plugins
In reply to: [Contact Form 7] Selectable Recipient with Pipes no longer workingThis WAS NOT related to upgrades – it was an incomplete tag inside of the form.
Forum: Plugins
In reply to: [Firelight Lightbox] Not working after 1.5.0 update – css relatedI have an answer – bear with me because I only know enough to be dangerous at the server config stuff.
Across the shared server, certain wp folders were locked from browsing because of all the hacking attempts. Files that were allowed to be accessed thru the lockdown included images, js & css files. PHP files were not allowed (for browsing) because they are not intended to be browsed/direct accessed at that level.
I can override it with an htaccess file, but his opinion is that if I do that, then it opens up what was closed for security.
Soooooooo. Yeah, static css file it is. At least the next time something won’t work for no apparent reason, I’ll know where to look.
This is JustHost / BlueHost hosting, btw. (I know. I know. Ugh.) So if it comes up again, you’ll know what to ask.
RavanH, you have been stellar in your assistance! Thank you so much! I hope I didn’t eat up too much of your time!
Forum: Plugins
In reply to: [Firelight Lightbox] Not working after 1.5.0 update – css relatedI think I have an answer – on the phone with the hosting company, and the person I’m speaking to seems to think the restriction may have something to do with restrictions that were put in place back in April when there was issues with WP hacks happening. I’ve been on and off hold for quite a while now… They don’t want to do any support because technically 3rd party, but he’s trying to be helpful.
Forum: Plugins
In reply to: [Firelight Lightbox] Not working after 1.5.0 update – css related755 is done.
Let me go see what I can break in the cpanel.
Forum: Plugins
In reply to: [Firelight Lightbox] Not working after 1.5.0 update – css relatedpermissions are 644 (rw-r–r–)
BTW – there is nothing special in the root or subfolder htaccess file. Permalink structure is the only thing in the wp htaccess. And this is not the only site I’m having trouble with this, on this host.
Forum: Plugins
In reply to: [Firelight Lightbox] Not working after 1.5.0 update – css relatedI was just talking to an associate – wondering if maybe the issue might be the server won’t let the php file run as a css file even though the header is sent correctly in the easy-fancybox.css.php file. Something to do with a mime type or mod? That would explain why it’s working for some and not all.
Forum: Plugins
In reply to: [Firelight Lightbox] Not working after 1.5.0 update – css relatedsent via your contact form. 😉
Forum: Plugins
In reply to: [Firelight Lightbox] Not working after 1.5.0 update – css relatedIt’s on a development server, I’d rather not post a public link – any other option?
*applause*
@cris & @tmcguire — there was a different faq plugin that had the same problem (saw it in the forum) and changing that setting had some effect… which is why I asked.
The person posting at the link below was having the same sort of problem.
http://wordpress.org/support/topic/only-showing-5-posts?replies=9The fix was about using “query_posts” instead of “get_posts” in the loop, and then using a secondary loop… which is the fix I think the plugin needs.
Another thing to check — does your theme have the wp_footer() tag in in place?
Does the number shown change if you change “Blog pages show at most” setting? That would be the setting found on Dashboard >> Settings >> Reading.
Resolved. Requires a change to /plugins/wp-calendar/fsCalendarEvent.php file, line 215.
Change this:
return apply_filters('the_content', $this->description);To this:
return apply_filters('the_content_rss', $this->description);Forum: Plugins
In reply to: [WP Calendar] Template: show "-" only if there is an end date or timeOops! One more time…
I tried using
before="<br />"
on the event_starttime tag. Didn’t work.
And using
after="<br />"
on the event_subject tag.