hardincomp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Is there a way to have a boilerplate template for regular posts?Actually david, I do copy & paste from a private, stickied post with the basic information. As I originally said, I was wondering if there was a way to save that as a template, but I’m guessing there isn’t.
Thanks for all your feedback, everybody.
Forum: Fixing WordPress
In reply to: Is there a way to have a boilerplate template for regular posts?Sorry, moshu, I missed your post earlier. The constant items are the Dodgers graphic, a text link to the Dodgers website, the SmallFont link to the box score, the news rundown, and the next game preview.
I’d rather not quicktag it, Kafkaesqui, because I already have several extra quicktags and I’d rather not add one more if I can avoid it.
Forum: Fixing WordPress
In reply to: How can I specify a CSS class to a blog title?I’ll have to try that, although it could get unwieldy if I want to do specific classes for multiple categories. Thanks for the suggestion.
Forum: Fixing WordPress
In reply to: italics in the titleActually I just sruuround the words I want italicized with the EM tag, like on this post.
Forum: Fixing WordPress
In reply to: Have a link in Tagline/Description?I actually did this for my blog. I had the tagline “Brickbats for Asshats since 2004” on my old BraveJournal blog and I insisted on including it on my WP blog.
I opened up header.php in my theme folder and did a little editing. I already have a class called SmallFont that I use when I want something in a small font that calls the following css:
.SmallFont {font-size: .9em;}
I made the following modification to my header.php to display the tagline:
<div class=”description”><?php bloginfo(‘description’); ?>
<em class=”SmallFont”>Brickbats for Asshats since 2004</div>Note the line directly below where bloginfo(‘description’) is called. (I wanted to include the whole block, but WP kept mucking up the h1 line so I deleted it from this post) That’s how I insert my tagline, and it appears on every page. You can add a link with no problem.
That may do just what you’re thinking of.
Forum: Fixing WordPress
In reply to: Is there a way to have a boilerplate template for regular posts?The problem is that it changes daily. The boilerplate info is simply my daily starting point.
Forum: Everything else WordPress
In reply to: Anyone Succeeding with 1.5.1?Damned. I used my server’s editing applet to make the 1.5.11 edit and it added extra spaces at the bottom. How incredibly stupid is that?
I guess that’ll teach me to use it to edit things in the future, eh?
Forum: Everything else WordPress
In reply to: Anyone Succeeding with 1.5.1?I had 1.5.1 and today I saw about 1.5.11. I did the edit in the WP blog, and now I get
Warning: Cannot modify header information
all over the place in the Admin section.
I then took out the 1.5.11 edit, checked again, and I still get the errors. I can’t even log out of my Admin panel because I’ve got the errors so badly.
Is anyone else getting this?
Forum: Plugins
In reply to: WP Poll install errorAs I posted in anothe thread, the problem seems to be whwre it selects the table by specifying “$wpda->pollsq” and “$wpdb->pollsq”. Remove the code “$wpdb->” and it should work. At least that’s what did it for me. Of course I had to go through damned near every file and make the edits, but it works now.
Forum: Plugins
In reply to: Poll FeatureI was having the same problem and I fixed it by removing all instances of “$wpdb->” from the file. The same seems to need to be done in all the files that use this call.