manstraw
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: importing images in posts from typepadwhat are the permissions on your uploads folder?
Forum: Fixing WordPress
In reply to: Page edits NOT SAVING (!)use phpmyadmin to browse the database and see if your edits are actually there or not.
Forum: Fixing WordPress
In reply to: Form to Subpageyou can create your own page templates. you can put your form stuff on these custom page templates. I might use one page template, and use some php to tell if there are post values. (use post instead of get, so you don’t conflict with wordpress). Process the post values if true, or write the form if false. So the first time a person comes to the page, they see the form. They enter values, hit submit, and the form takes them to the same page. But this time there are post values, so you instead do whatever it is you want to do with them.
http://codex.wordpress.org/Pages#Creating_your_own_Page_Templates
Forum: Fixing WordPress
In reply to: ‘featured post’You can do that with this plugin.
http://mattread.com/projects/wp-plugins/custom-query-string-plugin/
Basically, it lets you customize the query that determines how many posts will show on the home page. You can set it to 1.
Forum: Fixing WordPress
In reply to: Add Page Links to External SiteYou could custom edit the sidebar.php to manually insert an extra link at the beginning or the end of the list. But I personally wouldn’t recommend doing that. The whole point of that block of navigation links is that it’s to pages on your domain.
If you install widgets, you can easily create extra block of links etc. that will appear in your sidebar.
Forum: Requests and Feedback
In reply to: Bug: Post moderation only works with the Role “Contributor”A contributor (or anyone) can mark their post Private instead of Draft if they don’t want it to be up for approval yet. It won’t show in anyone else’s ‘others drafts’ list.
btw, I wouldn’t call this a bug. It’s supposed to work this way. Authors can self publish, Contributors can’t. I do see the merit in having some expanded functionality in this area though.
Forum: Fixing WordPress
In reply to: Post moderation?yep, as I mentioned, contributors instead of authors.
I don’t see the problem do what I think you want. You already have the role manager plugin and limit categories. Just create new roles, and assign priviledges as you need. Or maybe I’m not getting exactly what you want.
Forum: Fixing WordPress
In reply to: Post moderation?Just click on the manage tab, and you’ll see ‘others drafts’. click those to edit them. you can publish, delete, or edit the content like normal.
Forum: Fixing WordPress
In reply to: post status – private or publicLook for the Category Access plugin. It lets you do what you want. You can specify the categories that the public can read (could be none), and then the categories that new signups (subscribers) can read, and then people above subscriber can read everything, except I think you edit that on a user by user basis.
Here’s the page you download it from. Scroll right to the bottom.
Forum: Fixing WordPress
In reply to: File Upload not appearing in IEDo you have different security settings in IE, like javascript turned off? I’m not sure if that upload function relies on javascript, but i can assure you i’ve used it in IE without any problem.
Forum: Plugins
In reply to: can I use fread to access WP remotely?you’re not really supposed to call pages like that directly in your theme. you’re not loading all the functions and such when you try and bypass. What does the summary.php do? How can you view it in your browser? Basically, figure out how to access just by typing a uri in your browser, and use that uri in your php code.
Forum: Themes and Templates
In reply to: Plugin for icons?you could use the standard upload function already in wordpress. just have it set to thumbnail, and not linked to original image, and it will work like that. you would need to set rules in your css to have it display like that.
Forum: Fixing WordPress
In reply to: Post moderation?Yes, instead of authors, make people contributors. Everything they write up for a post will need to be approved. They can’t directly publish.
Forum: Fixing WordPress
In reply to: How to show only child category of a parent category in posts?What did you do to solve the problem?
Forum: Plugins
In reply to: [RELEASE] WP-phpMyAdmin pluginActually, I’ll go leave some feedback on your site as well. I consider this plugin fairly useful, although I worry slightly about the potential for someone to cockup their database.
It’s dumb question time. Is it only the admin user that can access it? (I would expect so) I’m wondering if access to it could be set in the roles manager plugin.