smoniz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Sidebar Not Showing On Single PostsWell as it turns out it was the call to the comments function. Believe it had to do with the VB-Wordpress bridge plugin. I removed that function call, and everything appeared as it should. Thanks all 🙂
Forum: Themes and Templates
In reply to: Sidebar Not Showing On Single PostsHere is the coding for sidebar.php http://pastebin.com/UMk238ut
Forum: Themes and Templates
In reply to: Sidebar Not Showing On Single PostsAnyone else have an idea? The last thing I just tried was taking all code from single-normal.php and pasting into single.php. That didn’t work either.
Forum: Fixing WordPress
In reply to: ‘nnn’ characters showing upIssue found. The “AJAX Comments” script was causing the issue. Deactivating it fixed this particular issue.
Forum: Themes and Templates
In reply to: Sidebar Not Showing On Single PostsIn single.php it has the following:
<?php // template variation global $post; $tplkey = get_post_meta($post->ID, 'template', true); // load custom single post template if ($tplkey == true) { include_once TEMPLATEPATH.'/single-'.$tplkey.'.php'; } else { include_once TEMPLATEPATH.'/single-normal.php'; } ?>In single-normal.php it has:
<?php get_sidebar(); ?>right above<?php get_footer(); ?>Forum: Themes and Templates
In reply to: Comfy Theme: Changing Custom Field DeclarationWell I’ve given up for the time being, i’ve removed images from the posts themselves until I can find a solution. So far no word from DeluxeThemes, not sure if they even offer support (which if they don’t i’ll be an unhappy camper lol).
Forum: Fixing WordPress
In reply to: image not showing up using thumb.phpLooking at your img code, I think it should be formatted as
<img alt="The Daily Cubicle Edition 1" src="http://thedailycubicle.com/wp-content/themes/ThrillingTheme/thumb.php?src=http://thedailycubicle.com/wp-content/uploads/2010/01/cube_farm.jpg"&h=195&w=540&zc=1&q=95/>I moved the ” character from after q=95 to after .jpg
Forum: Themes and Templates
In reply to: Comfy Theme: Changing Custom Field DeclarationUpdate: By using the “insert avatar into post” option, I can at least get the images to populate in the posts. Now according to the documentation of the Comfy theme, for the thumbnails to populate on the main page (feature story section), one of two things need to happen.
1. Custom Field ‘thumb’ with the path to the image must be inserted
or
2. If no ‘thumb’, then search for another image in the post.With me using the “insert avatar into post” option, that eliminates # 1. So technically, the Comfy theme would automatically search & find the automatically inserted image. Problem is, it’s not.
Anyone have any ideas?
Forum: Plugins
In reply to: Drop Down Menu In Write Panel For ImagesBump 🙂
Forum: Plugins
In reply to: Akismet API KeySee above should be in plugins section.
Forum: Plugins
In reply to: Akismet API KeyScratch that it is under “Plugins” menu. It should say Akismet configuration
Forum: Plugins
In reply to: Akismet API KeyGo to your dashboard, and on the left side menu, it should be under “my dashboard”.
Forum: Plugins
In reply to: Akismet API KeyI ran into that problem too not too long ago
From what I remember, akismet has a section when you go to “edit” the plugin, but that is where you will receive the error. But if you go to try and view your akismet stats (same with wordpress stats if you have it) there should be a prompt to enter your API key with a text field. Add it there and you should be good.
Forum: Plugins
In reply to: Drop Down Menu In Write Panel For ImagesI also forgot to mention that I tried the “Custom Write Panel” plugin, but that does not seem to work for WordPress 2.7.
I added a field and it never even shown up in the manage fields options.
Any help would be appreciated 🙂