TCBarrett
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: 2 contributors one blog?You can have as many users, with varying roles, as you want.
This link is overkill for what you need, but you could scan it for an overview of the different roles available: http://codex.wordpress.org/Roles_and_Capabilities
Forum: Everything else WordPress
In reply to: Which license to use for a paid plugin?http://wordpress.org/about/gpl/
Matt, Automattic and most people in the WordPress community believe themes and plugins to be derivatives of WordPress core, and thus break the law if they are not distributed under GPL themselves.
In short, if you write a plugin or theme, and give or sell it to someone, they have a right to the source code.
Forum: Installing WordPress
In reply to: Steps for transferring wordpress.com blog to .orgHave you read this: http://codex.wordpress.org/Moving_WordPress ?
Forum: Installing WordPress
In reply to: No html tabThe TinyMCE editor is javascript based and things get cached easily. Have you tried clearing out your cache and doing a hard refresh?
Forum: Everything else WordPress
In reply to: How to save an array with one metakey in postmeta?It probably is working..?
If $poddata is an array, then WordPress will serialise it. when you call get_post_meta() make sure you pass the $single=true arg so it knows to fetch the single serialised meta value. It will then unserialise it into an array.
What does
get_post_meta($this->id, 'pod', 'single');return?Forum: Everything else WordPress
In reply to: IntroTextYes, and possibly no. Always live the SEO mantra: “content is king”
Forum: Everything else WordPress
In reply to: password protected page questions1. Why not just change the characters in the password to all lower case?
2. You can copy and paste. Write it first in notepad/textpad and then paste it into the password box.Forum: Fixing WordPress
In reply to: Linked PageLog in to your dashboard. Look down the left hand side. Do you see:
Dashboard, Posts, Media, Links, Pages, Comments, Appearance, Plugins, …If not, are you using wordpress.com ?
Forum: Hacks
In reply to: [Shortcode] caption shortcodeI have not checked to see if there are any hooks into the core shortcodes. You could copy the caption code to make your own, adding any functionality you want.
Like here: http://wordpress.org/support/topic/add-new-caption-shortcode-attribute?replies=8
Forum: Plugins
In reply to: Most Viewed RSS feed per categoryIf they are specifying a particular category, it is in the query string/url. I believe these are things you can monitor with google analytics. Have never done it myself, but know of many who claim to do so.
Forum: Fixing WordPress
In reply to: deleted index.phpLeave the core files alone, you have edited the wp-config.php file incorrectly. Backup your wp-config.php file. Rebuild it with your original settings. If you change them, it either wont work, or you’ll be prompted to install WordPress again.
Forum: Fixing WordPress
In reply to: After I Click Publich Post then Redirect to Write New postWith a vanilla install, there will be at least two places where you can click on ‘add new post’ – one at the top of the page above the post title, and one in the posts menu on the left that should be open.
It’s just a click away.
Forum: Fixing WordPress
In reply to: deleted index.phpI have never used fantastico, but if you are familiar with FTP:
Double check that it really is missing.
Note what version you are using (something like wp-includes/version.php)
Download the archive: http://wordpress.org/download/release-archive/
Unzip the archive and upload any missing core files.Forum: Plugins
In reply to: Most Viewed RSS feed per categoryGoogle analytics?
Forum: Plugins
In reply to: Article Directory pluginIf you go to the plugin page: http://wordpress.org/extend/plugins/article-directory/
Down the bottom right is a link to start a new topic, which gets auto-tagged specifically for that plugin. This is usually the best way to get help regarding a specific plugin.