npannos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Picture Gallery QuestionThanks Shane, but those are both the exact same strings.
Forum: Fixing WordPress
In reply to: Table Sizebump :/
Forum: Fixing WordPress
In reply to: Moving Title in Featured Postscan anyone help with this?
Forum: Fixing WordPress
In reply to: Paginate ProblemsWell i sort of figured it out, i managed to add the pages at the bottom. The only problem is it has to be assigned to a category. I would like to sort it by ALL previous posts. help please ??
Forum: Fixing WordPress
In reply to: Missing Blogroll WidgetI found it, thanks a lot everyone ??
Forum: Themes and Templates
In reply to: Posts showing php codeI tried that, and get a bunch of errors.
Warning: Missing argument 1 for the_content_limit(), called in /home/content/c/r/o/crookedminds/html/wp-content/themes/Tauren/home.php on line 113 and defined in /home/content/c/r/o/crookedminds/html/wp-content/plugins/limit-post.php on line 18
Forum: Fixing WordPress
In reply to: Can’t see website and Can’t log into wp/adminMaybe your host had some downtime, everything seems to be working. Nice layout by the way.
Forum: Themes and Templates
In reply to: Posts showing php codeI changed the content limit from 200 to 100 but if there isn’t any text in the post, it will fill it up with either flash code or css code.
Forum: Fixing WordPress
In reply to: Moving Title in Featured PostsI don’t think it’s a plugin that is affecting it, because thats how the theme was designed. I have a featured content gallery installed, but it’s not configured.
Forum: Fixing WordPress
In reply to: Changing the width of blog poststhank you so much ??
Forum: Themes and Templates
In reply to: Posts showing php codeI just searched for it, and i don’t see that string anywhere in my functions.php Sorry about posting all of the code, i didn’t know how else to do it.
Forum: Themes and Templates
In reply to: Posts showing php codedoes anyone know how to fix this? :/
Forum: Plugins
In reply to: flv playerSouon, mind sharing these answers with me? I’m looking to do the same thing on my blog. Thanks.
Forum: Themes and Templates
In reply to: Posts showing php codeThanks for taking a look at it business.
Forum: Themes and Templates
In reply to: Posts showing php code<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; ?>
<div class=”sub” style=”padding-top:8px;”><span class=”rss-feed”><img src=”<?php echo get_option(‘home’); ?>/wp-content/themes/Tauren/img/rss.gif” alt=”RSS Feed” border=”0″ class=”float-none” style=”border:0px; margin:0px 5px 0px 0px;” />“>Subscribe</span></div>
<div class=”titlebg”><?php wp_title(); ?></div>
<div class=”clickbg”>
<div class=”bread”><?php if (class_exists(‘breadcrumb_navigation_xt’)) {
echo ”;
// New breadcrumb object
$mybreadcrumb = new breadcrumb_navigation_xt;
// Options for breadcrumb_navigation_xt
$mybreadcrumb->opt[‘title_blog’] = ‘Home’;
$mybreadcrumb->opt[‘separator’] = ‘ » ‘;
$mybreadcrumb->opt[‘singleblogpost_category_display’] = true;
// Display the breadcrumb
$mybreadcrumb->display();
} ?></div>
</div>
<?php include ‘sidebar-right.php’;?>
<div style=”width:525px; float:left; padding:5px 10px 5px 5px;”>
<?php include ‘adsense/468×60.php’;?>
<div class=”post”>
<div class=”entry”>
<?php while (have_posts()) : the_post(); ?><div class=”fieldset-box”>
<div class=”legend-box”>“><?php the_title2(”, ”, true, ’58’) ?></div>
<div class=”POST-INFO”>
By <b><?php the_author_posts_link() ?></b> – <b>Last updated:</b> <?php the_time(‘l, F j, Y’) ?>
</div><div class=”cat-image”>“><img style=”padding:0px; border:0px; margin:0px;” width=”150″ height=”150″ src=”<?php echo get_post_meta($post->ID, “Thumbnail”, true); ?>” /></div>
<?php the_content_limit(250, “”); ?>
<div class=”continue-reading”>
<b>“>Read More »</b>
</div>
</div>
<?php endwhile; ?><?php
if(class_exists(‘wp_pagination_plugin’)){
$p = new wp_pagination_plugin;
$p->show();
} ?>
</div>
</div>
</div>
</div>
<?php else : ?>
<?php include (TEMPLATEPATH . ‘/notfound.php’);?>
<?php endif; ?>
<?php get_footer(); ?>and archive
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; ?>
<div class=”sub” style=”padding-top:8px;”><span class=”rss-feed”><img src=”<?php echo get_option(‘home’); ?>/wp-content/themes/Tauren/img/rss.gif” alt=”RSS Feed” border=”0″ class=”float-none” style=”border:0px; margin:0px 5px 0px 0px;” />“>Subscribe</span></div>
<div class=”titlebg”><?php wp_title(); ?></div>
<div class=”clickbg”>
<div class=”bread”><?php if (class_exists(‘breadcrumb_navigation_xt’)) {
echo ”;
// New breadcrumb object
$mybreadcrumb = new breadcrumb_navigation_xt;
// Options for breadcrumb_navigation_xt
$mybreadcrumb->opt[‘title_blog’] = ‘Home’;
$mybreadcrumb->opt[‘separator’] = ‘ » ‘;
$mybreadcrumb->opt[‘singleblogpost_category_display’] = true;
// Display the breadcrumb
$mybreadcrumb->display();
} ?></div>
</div>
<?php include ‘sidebar-right.php’;?>
<div style=”width:525px; float:left; padding:5px 10px 5px 5px;”>
<?php include ‘adsense/468×60.php’;?>
<div class=”post”>
<div class=”entry”>
<?php while (have_posts()) : the_post(); ?><div class=”fieldset-box”>
<div class=”legend-box”>“><?php the_title2(”, ”, true, ’58’) ?></div>
<div class=”POST-INFO”>
By <b><?php the_author_posts_link() ?></b> – <b>Last updated:</b> <?php the_time(‘l, F j, Y’) ?>
</div><div class=”cat-image”>“><img style=”padding:0px; border:0px; margin:0px;” width=”150″ height=”150″ src=”<?php echo get_post_meta($post->ID, “Thumbnail”, true); ?>” /></div>
<?php the_content_limit(250, “”); ?>
<div class=”continue-reading”>
<b>“>Read More »</b>
</div>
</div>
<?php endwhile; ?><?php
if(class_exists(‘wp_pagination_plugin’)){
$p = new wp_pagination_plugin;
$p->show();
} ?>
</div>
</div>
</div>
</div>
<?php else : ?>
<?php include (TEMPLATEPATH . ‘/notfound.php’);?>
<?php endif; ?>
<?php get_footer(); ?>