killertofu01
Forum Replies Created
-
Still wondering if there are any successful solutions to this?
As an update, it works for Facebook but uses wp.me for Twitter still.
VYSUAL, I would try that but that plugin is over a year old with no updates. I’ve had problems using non-updated plugins in the past.
Forum: Themes and Templates
In reply to: Weird Characters AppearedSOLVED. I dunno, somehow those characters got added in my header file. Must’ve been a transfer error or something.
WHEW!
Forum: Themes and Templates
In reply to: Weird Characters AppearedUpdate: I deactivated all plugins and it remained. Tried a different theme, and that worked. So, can someone point me in a direction where this would show up in the theme so I can fix it?
Forum: Plugins
In reply to: WANTED: Update to Ustream.tv PluginNEVERMIND! I love it when I get caught for being lazy. Especially by myself!
For those looking at this and wondering, there is an embed code listed at ustream. Use that!
Forum: Plugins
In reply to: ustream plugin and permissionsdoing light research, i think the problem is compatibility. the last update to this was almost a year ago, so it probably will not work until they release an update.
Forum: Plugins
In reply to: ustream plugin and permissionsi have the same problem.
Forum: Themes and Templates
In reply to: Multiple Excerpt on Main PageFigured it out.
For those looking in the future…
<?php query_posts('showposts=1&cat=15'); if (have_posts()) : while (have_posts()) : the_post(); ?> <h2><a class="title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_excerpt(); ?> <?php endwhile; else : endif; ?>
Just change the category number to fit the category you want. You can put this block of code several times to display several different categories.
Forum: Themes and Templates
In reply to: Creating dynamic image links…Nevermind, figured it out for myself…
Anyone wondering the same thing:
<img src=”<?php bloginfo(‘url’);?>/wp/images/image.jpg”>
Forum: Themes and Templates
In reply to: need a little help w/ spacingI’m assuming you mean the entry title, not blog title?
You have some extra stuff in your entries html that you don’t need. Look through your pages for this code:
<div class="entrymeta"> <p class="navigation"/>
That p class is making that extra space. Also your css is add a 5px margin below your category header. Look for this:
.entryarchive
and remove the 5px bottom margin.Forum: Themes and Templates
In reply to: Help my images and background is not showing up on my blogOk, I think I know what’s going on. One of two things:
1. Your .htaccess file is blocking all images being displayed from your website. If you want to post what your .htaccess says on this forum, you can but I would advise against it, for security reasons. You can contact hostgator to help you with this instead. Up to you.
2. Your images are missing from the template/images directory. In that case you are going to have to reupload the entire tempalte and make sure the images are working.
I think it’s more along the lines of number one.
Good luck.Forum: Themes and Templates
In reply to: Help my images and background is not showing up on my blogMake sure all the images uploaded with the template.
If you go into the template directories, you should find a folder marked “images.” In that folder you should find the images that are missing.
Forum: Themes and Templates
In reply to: thumbnail/galeryAre you using Gallery, the software? If so, this might not be the forum for this question.
Forum: Themes and Templates
In reply to: How can I move my sidebars up, like they’re supposed to?i see them where you want them to be. did you solve this?
i am using safari on mac. maybe it could be your browser/os.
Forum: Themes and Templates
In reply to: Good Theme for Photographer?i agree with iridiax, Gallery is a better photo tool because it allows much more protection for photos. i have used it in the past and it works great. plus, it allows pro photo peeps to sell their work, if theyre looking to do that.
as for the links, did you manually add those to that template, or did it come like that?
after looking at the default file, i will assume you did. so, when you setup the links in the page, you probably aren’t listing them correctly. i am guessing your links look something like this now:
<a href="www.twitterfone.com">
or even worse,<a href="\www.twitterfone.com">
try adding “https://” to the beginning of the links, so it comes out looking something like this:
<a href="https://www.twitterfone.com">
that way it will no that that is a root link.