Modifiedcontent
Forum Replies Created
-
What is the best membership plugin? I’m considering Wishlist, but there are many other options out there.
I think they’re all commercial, which is OK if they offer value for money.
Forum: Developing with WordPress
In reply to: [Plugin: NextGEN Gallery] Error: Exceed Memory LimitFound a solution here.
Forum: Plugins
In reply to: MM Forms emailThe From address should NOT be my-name my-email; it should be the name-email from the person who’s using the MM Forms contact form to send an email from my site.
Thanks for the attempt, tbelmans, but your response applies to another common WordPress issue, not the issue of this thread.
Forum: Fixing WordPress
In reply to: [Plugin: Nextgen Gallery] Thumbnail size and link backHow was this resolved?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thumbnail sizeI’d like to know as well…
I’d like to know this as well. Looking for a solution I can use as a journalist to provide pictures to editors.
Forum: Plugins
In reply to: Different company sites using same blog postsFinally got around to installing FeedWordPress. It’s actually a very effective, user-friendly plugin that will greatly enhance my network of WP sites and make my life a lot easier.
samboll, apologies for my doubts! Thanks! 🙂
Forum: Plugins
In reply to: MM Forms emailI’m having the same problem. Very annoying, because otherwise it’s the best contact form I’ve tried so far…
Forum: Fixing WordPress
In reply to: Resistration Email With Bluehostbh_WP_fan, are you sure this is the same issue. The trac report talks about email notifications not arriving at all, “landing in dead.letter”.
My emails arrive fine, with or without the plugins. I just have trouble getting the right From: line to show on the email.
Forum: Fixing WordPress
In reply to: Resistration Email With BluehostThanks!
Suggestion #1 had zero effect.
The wp-from-email plugin sort of fixed the problem, but seems to conflict with my MM Forms contact form. Emails from the contact form now all have my own email as sender, instead of the email address the user enters.
Sending email using SMTP seems overkill. I think I’ve tried that in the past and that it caused all kinds of other problems.
Any other ideas?
🙁
EDIT: If Bluehost is very strict in their email header requirements:
This is the way Bluehost requires their headers to be:
Examples of headers that should work would be:
From: user@domain.com
From: <user@domain.com>
From: “name” <user@domain.com>Does WordPress adhere to those requirements? Where in WP is the code that forms these headers?
Forum: Fixing WordPress
In reply to: Resistration Email With BluehostIs there a good solid solution to this? I’ve seen several threads about this on different forums and they all end with the same partial solutions.
Forum: Plugins
In reply to: [Plugin: Unfiltered MU] Doesn’t WorkDespite having Unfiltered MU activated, all my object tags (video on Blip.tv) were still stripped from my WordPress export file. I have WPMU 2.8.4 on a fresh install.
What is the latest on this annoying issue?
Forum: Plugins
In reply to: Understanding admin_print_scripts-(page-hook)I answered cptnwinky’s question above. The answer is the admin_enqueue_scripts hook.
As far as I understand, you didn’t answer his question at all. admin_enqueue_scripts only works for admin areas of the plugin, not for post/edit pages.
Moreover, cptnwinky brought up admin_enqueue_scripts himself, you did not suggest it. His question was about understanding this function, how to use it outside admin pages, how to apply it to post/edit, how to “hook” it.
But I still have no idea what you want to do. You say “the question how to add javascript to the header from a plugin for pages other than admin page”… What pages?
You have to be specific. Do you mean the main blog page? An archive page? A single post page? What exactly is it that you’re trying to do? You’re not trying to “add javascript”. You’ve already got javascript. Where do you want it to be? What conditions?
Your “question” is simply far too vague for a proper response.
With all due respect, absolute BS. You just can’t read.
Question: How to add javascript file addresses – or whatever the f*** they’re called – from a plugin to the headers of specific pages outside admin areas. Those pages could be a blog page or an archive page, but also any custom page.
How to get a plugin to add the required javascript link to a specific page offering functionality to the user.
According to the aforementioned tutorials and information in the codex admin_print_scripts can NOT be used in those pages. What to use in those cases? Also it is not clear to me what the page_hook of a custom page would be.
You haven’t come close answering any of these questions. You have been condescending and rude from your first posts. I understand I have to be nice to the moderators or risk never getting answers or even being banned, but I’ve had it with you.
Forum: Themes and Templates
In reply to: Tags to display profile data, like name etc.Thanks t31os!
I needed it to prefill form fields in a plugin. I had to put this in the preceding php:
global $current_user; get_currentuserinfo();And then this in the form:
<input value="<?php echo $current_user->user_firstname; ?>">A little more complicated than I’d hoped, but it works.
Forum: Plugins
In reply to: Understanding admin_print_scripts-(page-hook)The original question was:
How can I use admin_print_scripts-(page-hook) to attach a javascript script to the post/edit pages only?
The conundrum cptnwinky was referring to is really how to add javascript to a header from a plugin. There is a lot of information in the codex about how to do this for admin pages, but nothing about how to do it in user-facing pages.
Thanks for your latest solution to add javascript to a template page. Again, that wasn’t at all obvious to me. It’s good to know for my purposes.
But it still doesn’t answer the question how to add javascript to the header from a plugin for pages other than admin pages.