asechrest
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I move Contact Form 7 from Tools to Settings?I’d hate to remove this plugin, it’s a useful and easy to use tool..
Not being able to move the plugin link from the Tools menu to the Settings menu, which provides no functional difference, is a problem big enough to remove a plugin over?
I don’t get it.
Forum: Fixing WordPress
In reply to: Renders great in Firefox, screws up in IEI wrote up a 2-part series on validating your WP site.
Hopefully it’s useful for you, though YMMV. As described in the articles, I used Firefox and a handy addon to make it easier, for me at least.
Forum: Fixing WordPress
In reply to: How to make tableless “the_content()” ?As far as I know,
the_content()doesn’t come with any special formatting like tables.If I do this:
<div id="entry"> the_content(); </div>…all I get is the content inside a single div.
Can you link to an example of the problem you’re having?
Forum: Plugins
In reply to: [Plugin: Sociable] Tumblr, Blogmemes, Magnolia, Pownce icons gone ?Tumblr, at least, is gone. I posted a fix here.
To fix the others, download an old version of Sociable and open the
sociable.phpfile in a text editor or your favorite code editor. Look at the large array that holds the information for each social media website. Pull the missing ones out of that array, and add them to the array in thesociable.php filethat’s in the NEW version. Follow similar steps as to what I posted in the link above.Glad to help.
is_page('page_ID')or!is_page('page_ID')Forum: Fixing WordPress
In reply to: Firefox Crash only with WordPressHad the same issue and the same solution worked. Thanks for this.
Forum: Fixing WordPress
In reply to: how to alter blog font size?Ahhh, thanks Esmi. That hadn’t occurred to me. Thanks for the assist.
See if you can assist with this one. I offered the correct code but can’t seem to get it to tie in with her current template without pushing the sidebar to the bottom. Tried playing around with it in Firebug.
I’m 0 for 2 today. 🙁
Forum: Fixing WordPress
In reply to: how to alter blog font size?entry_contentis there, line 573 in the pastebin.…but, you’re right, the
<span>isn’t there and I’m not sure where it’s coming from. You can even see it when you view your source. I can see it in Firebug, but I don’t see it inindex.php.Forum: Themes and Templates
In reply to: Query Post as a Bulleted listI think your
<div>s may be the issue. Trying to play around with it.Forum: Fixing WordPress
In reply to: how to alter blog font size?Paste the contents of your
index.phpandstyle.cssat http://wordpress.pastebin.ca.Then link back here.
Forum: Themes and Templates
In reply to: Query Post as a Bulleted listLooks like you’re missing closing
</li>, </ul>, </div>. Starting at the opening<ul>it should look like:<ul> <li><strong><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><span><?php the_title(); ?></span></a></strong><br /> </li> </ul> </div>Try that.
Forum: Fixing WordPress
In reply to: how to alter blog font size?You’ve got the following code overriding your CSS styling:
<span style="font-size: small; font-family: Times New Roman;">This line of code would be located in
index.php. Notice how it specifies a font-size of small. Your post content is wrapped in this code.After making backup copies of the file, what you could try is removing the
<span...>and</span>surroundingthe_content()in yourindex.phpfile. Then add the following to theentry_contentsection of yourstyle.css:font-size: 1.2em;You can adjust that number as you see fit.
The problem is that
<span>section hard-coded into your php file.Ok, open up
sociable.phpand you’ll see a large array of social media websites. The array entry for Tumblr was lost in the recent updates for some reason. Add this code before the “Twitthis” entry:'Tumblr' => Array( 'favicon' => 'tumblr.png', 'url' => 'http://www.tumblr.com/share?v=3&u=PERMALINK&t=TITLE&s=', ),That should fix the problem.
Scratch that. I updated last night but there was another update since. I see the issue. I’ll see if I can fix it.