JG
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Category page not showing read more on articlesWARNING – troll post!
‘wordpress codex’ or ‘find a theme that actually implements wordpress functions’. In either shall you find your answer…
Forum: Fixing WordPress
In reply to: 2.8 & mootoolsbtw: pre 2.8, when creating or editing a post, one could click the “Ad an Image” button without first giving focus to the “body” field with no unusual results. As of this posting, focus MUST be given to the “body” field prior to selecting the “Ad an Image” button, otherwise, the image/s are uploaded but there is no gallery created nor is there any apparent way to insert the images into the post.
Forum: Fixing WordPress
In reply to: Help with WP 2.6 Image Captions and VideoThis came out of the classic theme css and resolved my particular version of this issue.
/* Captions & aligment */ .aligncenter, div.aligncenter { display: block; margin-left: auto; margin-right: auto; } .alignleft { float: left; } .alignright { float: right; } .wp-caption { border: 1px solid #ddd; text-align: center; background-color: #f3f3f3; padding-top: 4px; margin: 10px; -moz-border-radius: 3px; -khtml-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .wp-caption img { margin: 0; padding: 0; border: 0 none; } .wp-caption p.wp-caption-text { font-size: 11px; line-height: 17px; padding: 0 4px 5px; margin: 0; } /* End captions & aligment */
Forum: Fixing WordPress
In reply to: Duplicate entry errorThis issue is still around after the recent patch. Any idea when it will go away?
Forum: Fixing WordPress
In reply to: Duplicate entry errorAny info on how to fix it manually? I saw in the bug report an edit for upgrade.php. I’ve already ran the upgrade so that won’t do anything.
Forum: Fixing WordPress
In reply to: Duplicate entry errorIs this something that will go away with the next updates? It’s kind of a nuisance.
Ping the tld and the sub domain (WWW) and make sure they both go to the same place.
Forum: Plugins
In reply to: Visitor submission w/uploadbump
Forum: Plugins
In reply to: Subscribe to Comments text not showingIt’s not a problem – look under Options > Subscribe to Comments in your admin backend and fill in some text. If you don’t, none will show up because there is none by default.
Forum: Installing WordPress
In reply to: Changing default “Send to editor” img tag outputbump
Forum: Fixing WordPress
In reply to: Drafts showing up in feedsAfter days of tedious research, I found a work around for this issue: don’t create or save drafts.
Forum: Fixing WordPress
In reply to: php.ini variablesI went with the settings in php.ini-recommended and it stopped working. I guess I could look in the server logs to see what it doesn’t like. (brilliant!)
Forum: Fixing WordPress
In reply to: php.ini variablesbump
Forum: Fixing WordPress
In reply to: Drafts showing up in feedsbump
Forum: Fixing WordPress
In reply to: Separate RSS Feeds by category or topicSince the table column in wp-categories is category_nicename,
foreach((get_the_category()) as $cat) { echo $cat->category_nicename . '/feed'; }
gets the job done. I see that I can call table data by column name. Safe to assume other functions work by the same logic. I’ll see.