scribblerguy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments Section not showingIn the Admin area of your site, click on “Settings” (on the far right). That should bring up the “General Settings” page.
In the “Membership” row, make sure that the following is checked:
“Anyone can register” (unless you want to manually add users, say friends and family).And that “Users must be registered and logged in to comment” is unchecked. I think that’s the option that’s blocking the comment form in your case.
Forum: Fixing WordPress
In reply to: How do I import posts from a blogsome blog?Does Blogsome allow you to export your blog’s content? Look for an “Export” option.
Though, looking at this person’s experience: Export Blogsome…; it doesn’t look like that’s possible.
How many posts do you have? If it’s not too many, you could manually copy the content over. Also, WP can import posts from regular RSS feeds.
Forum: Fixing WordPress
In reply to: Noob cannot parse WordPress feedIf the problem is happening for multiple scripts (including WP’s built-in RSS widgets), and “Connection Refused” is always the problem, then this seems to be an issue with your server’s firewall. Though, it could be with your server’s PHP settings.
Your best bet is to check your webhost’s support area for more info or contact their support.
Forum: Fixing WordPress
In reply to: Removing and preventing dates and times from postsIf you don’t want that info to be public, then you’ll need to edit your theme’s file and remove the date-related template tags.
Once you do do that, the date/time info won’t display for any of your posts, old or new.
Forum: Fixing WordPress
In reply to: Front page with static page AND specific category loopForum: Fixing WordPress
In reply to: How to add image at the end of each categoryI don’t think wp_list_categories can do what you want it to do.
The Category Icons Plugin may have the functionality you’re looking for. Otherwise, you’d have to create your own function.
Forum: Fixing WordPress
In reply to: IE 6 giving me fitsCheck your site with the W3 Validator.
Line 262, Column 6: end tag for “div” omitted, but OMITTAG NO was specified.
This looks to be a coding issue. You’ll need to fix the unclosed div and any other issues (though some of the errors look to be caused by a plugin).
Consider using the IE Dev toolbar, and for Firefox, the Web Developer toolbar and Firebug extensions.
Also, your pages have no
<title>element.Forum: Fixing WordPress
In reply to: “Read more…” link?A quick search of the Codex brought up Customizing the Read More.
Forum: Fixing WordPress
In reply to: Comments closedIf this is for Pages (Codex link), you could use what would be a “No Comments” Page Template.
Follow the instructions in the Codex for making a new page template (just copy your theme’s page.php and rename it, add the template name, etc.). Then edit the new template by removing comments related code such as
comments_template().If you’re talking about posts, then that could be a bit more complicated.
Forum: Fixing WordPress
In reply to: Will switching to Fancy Permalinks cause problems?I want to use the WP Super Cache plugin to the best of it’s ability and it requires a switch to Fancy Permalinks.
Is this going to cause problems with my old posts?No, not from a technical standpoint. Now, if you have an existing site with a high Google Page Rank, or such, well, that’s a different story.
Where are the mod mime, mod rewrite and PHP safe mode check boxes?
These are server settings, which, unless you’re running your own web server, are controlled by your webhost. Mod_rewrite and mod_mime are pretty much core Apache modules, so I’d expect those to be enabled on most webhosts.
Just install the plugin and see if your site serves static pages after going to the same post twice. If the plugin works, then no problems.
Forum: Fixing WordPress
In reply to: RSS2 Comment Errorsteo83, your theme’s code is wrong. It is adding an extra slash (“/”) at the end of the feed link address. From the header.php file:
<a id="i_rss" href="<?php bloginfo('rss2_url'); ?>/">rss</a>You can either manually fix these links, or choose a different theme. Your theme also has two extra links at the bottom (web hosting and tourism) that I’d remove as well. Take a look at On Sponsored Themes.
Forum: Plugins
In reply to: Add tags to feedAt the bottom of the thread I linked to was a link to a plugin with instructions on how to customize a feed. See:
http://wordpress.org/extend/plugins/feed-wrangler/faq/
You don’t have to make a plugin, just use that plugin and edit the new RSS feed template as if it was any other template. The only difference is the XML markup for the feed.
Forum: Fixing WordPress
In reply to: Custom Feild problemCustom fields are designed as variables that can be plugged into a page template and or theme. To use a custom field you will have to manually add the appropriate code to output a field.
One simple function is
the_meta. You can add that to your single.php (inside the Loop) with just<?php the_meta; ?>.Here’s an example of more complex code:
<?php if (post_custom('your-custom-field-name')) { // if the 'your-custom-field-name' field exists, do this echo post_custom('syour-custom-field-name'); } else { // otherwise, do this } ?>You could also take a look at Using Custom Fields in the Codex, but that page seems a bit out of date.
Forum: Fixing WordPress
In reply to: Only the title of the post in achieveYes. Sounds like you want to modify your theme by removing certain template tags that are inside the Loop of your theme’s archive template. All this and more can be read about in the Codex.
Forum: Plugins
In reply to: Add tags to feedTake a look at this topic: Creating a custom RSS feed.
Just make your own feed template by copying and customizing WP’s default feed templates (there in the
wp-includesfolder, such asfeed-rss2.php). You can use almost any any template tag, e.g.the_tag(). See the Codex: Template Tags.