fodden
Forum Replies Created
-
Forum: Plugins
In reply to: [Accordion Shortcodes] closer link at bottom?Thanks for the prompt response, Phil.
Forum: Fixing WordPress
In reply to: Expandable (and collapsible) excerptThanks, SwansonPhotos. The link is helpful for the function that can replace a “read more right here” plugin. The trick will be to get the “bookmark” automatically inserted after a couple of paragraphs, for example. (I take it that the function described in the link won’t work with
the_excerpt()but depends on a user having inserted the<!--more-->tag.)Many thanks, Donncha. And apologies for not getting to the end of the FAQ.
Forum: Fixing WordPress
In reply to: 3.3 HTML editor now uses monospaced fontYou just need to change the hooks in the plugin/function CSS. So add #wp-content-editor-container #content to the mix. (I haven’t checked to see how many of the old ids are still valid. I just added the new id to the style.
Forum: Fixing WordPress
In reply to: Some readers can't see some commentsI did what I could to shake SuperCache up and that seems to have done the trick. I’m not at all clear still how the problem arose, but turning SuperCache off and then on with different settings worked.
Thanks for the help. Much appreciated.
Forum: Fixing WordPress
In reply to: Some readers can't see some commentsThanks for the feedback. There are, however, 4 comments; and I (and others) see them fine with Firefox and Safari. I”m not sure how unregistered vs. registered (or logged in) users could affect what published comments are visible.
I’ve just reposted the comments now, changing the names and dates to be the same as the originals. I wonder if that helps. (Though what that would tell me, I’m not sure.)
Forum: Fixing WordPress
In reply to: Force one space between periodsA thousand thanks, Keesiemeijer. (Dank u zeer?). I must must must learn regular expressions.
Forum: Fixing WordPress
In reply to: Force one space between periodsThanks, ClaytonJames. But it’s the two spaces after the end of a sentence that I want to get rid of. This is a multi-author blog, and some authors use one space between sentences, but others are stuck with the old typewriter rule and use two. It’s the latter I’d like to correct automatically. So… how might I ensure only one space between sentences, i.e. after a period.
Forum: Fixing WordPress
In reply to: Force one space between periodsYes, well, I meant “Force one space between sentences” of course. Sorry about that.
Forum: Fixing WordPress
In reply to: Comment moderation except for registered membersThanks, Figaro. That’s what I’ll try.
Forum: Fixing WordPress
In reply to: Delay RSS publication of commentsI can delay all RSS feeds:
http://www.wpbeginner.com/wp-tutorials/9-extremely-useful-rss-tricks-and-snippets-for-wordpress/
But I want to delay comments only. Can someone tell me how to modify the hack given by the URL above? Please.
Forum: Themes and Templates
In reply to: different format for most recent entryWould something like this work?
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php if ( $n == 0 && is_home () ) { ?> <div class="top_post"> <?php } else { ?> <div class="post"> <?php } ?>I wasn’t sure from your answer, Microkid, how I was to include the
$n=0and the$n++Forum: Themes and Templates
In reply to: different format for most recent entryThanks, Microkid. That’s really helpful.
Forum: Fixing WordPress
In reply to: No access to front pageThankfully I found the problem. I was wrong when I said all the posts were okay: One of our bloggers failed to close a tag for the footnote function we have (via a plugin). WordPress didn’t close it automatically — because it’s not “native” markup, I guess. Anyhow, the result was that it choked the main page. I only found it after checking the third time.
Forum: Fixing WordPress
In reply to: Show only the subcategory of a postOtto42 thanks a million. So easy and simple — when you know.