visualspy
Forum Replies Created
-
Forum: Plugins
In reply to: Next Gen Gallery Plugin “Sort” Button MissingFigured it out. Go to reset settings in the sidebar. reset it. And the button appears. Must’ve been a conflict with the previous version.
Forum: Themes and Templates
In reply to: Hiding Title in Atahualpa ThemeThanks! I finally found it by searching for the blogtitle in
bfa_header_config.phphere’s the code to modify
if ( $bfa_ata[‘blog_title_show’] == “Yes” )
Just switch “Yes” to “No”
Cheers
Forum: Themes and Templates
In reply to: Front Page Won’t Show Sidebar. Other pages will!Thanks for all the help! And Im glad someone likes the paintings.:)
So, here’s the page.php file
————————————————————-
<?php get_header(); ?>
<?php get_sidebar();?>
<!– Main Column –>
<?php include (TEMPLATEPATH . ‘/leftbar.php’); ?>
<div id=”main”> <img src=”<?php bloginfo(‘template_url’); ?>/images/blog.gif” alt=”” width=”420″ height=”10″ />
<h4><?php the_title(); ?></h4>
<div id=”content”><div id=”primarycontainer”><?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<div class=”contentarea”><div class=”entry”><div class=”flickr”>
<?php /* flickrrss */ if (function_exists(‘get_flickrrss’)) {get_flickrrss(20); } ?></div><?php the_content(‘Weiterlesen »’); ?></div>
</div>
<div class=”divider2″></div><p>Contact | © Copyright by <?php bloginfo(‘name’); ?>. Design by AMY & PINK.</p> <?php endwhile; ?>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif; ?><!– Primary content area end –>
</div></div></div>
<?php get_footer(); ?>
<?php get_sidebar(); ?>
</div></div>
</body>
</html>
——————————————————————So, I tried placing the <?php get_sidebar();?> after <?php get_header(); ?> on the index page. The sidebar came up in the right place, but it shoved my posts, as well as the left sidebar all the way to the bottom right of the page.
Once again , thanks for all the help. greatly appreciated.:)
Forum: Themes and Templates
In reply to: Front Page Won’t Show Sidebar. Other pages will!Here’s the whole index.php. Basically I just need to know where to put the call to <?php get_sidebar(); ?> .
———————————————————————–
<?php get_header(); ?>
<!– Main Column –>
<?php include (TEMPLATEPATH . ‘/leftbar.php’); ?>
<div id=”main”> <img src=”<?php bloginfo(‘template_url’); ?>/images/blog.gif” alt=”” width=”420″ height=”10″ />
<h4>BLOG</h4>
<div id=”content”><div id=”primarycontainer”><?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?>
<span class=”sub”><?php the_time(‘d. F Y’) ?></span></h1><div class=”contentarea”><div class=”entry”><?php the_content(‘Weiterlesen »’); ?></div>
<div style=”text-align:right”>
<p><span class=”minihead_news”>” rel=”bookmark” title=”Permalink”>Permalink | <?php comments_popup_link(‘0 Kommentare’, ‘1 Kommentar’, ‘% Kommentare’); ?></span></p> </div>
</div>
<div class=”divider2″></div><?php endwhile; ?>
<div style=”margin-bottom:10px;”>
<?php wp_pagebar(array(‘before’=>’Seiten: ‘))?></div>
<div class=”divider2″></div>
<p>Contact | © Copyright by <?php bloginfo(‘name’); ?>. Design by AMY & PINK.</p>
<?php else : ?><h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif; ?><!– Primary content area end –>
</div></div></div>
<?php get_footer(); ?>
<?php get_sidebar(); ?>
</div></div>
</body>
</html>———————————————————————
Thanks in advance!
Forum: Themes and Templates
In reply to: Front Page Won’t Show Sidebar. Other pages will!Yeah. the call to <?php get_sidebar();?> is present. However it comes at the bottom of the index.php. Here’s the last few lines I’m looking at.
———————————————————————–
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif; ?><!– Primary content area end –>
</div></div></div>
<?php get_footer(); ?>
<?php get_sidebar(); ?>
</div></div>
</body>
</html>
———————————————————————-
I’ve tried to move the call to <?php get_sidebar(); ?> above and it ends up either breaking the theme. Or placing the sidebar in the far right bottom. I just can’t figure out where it needs to be in order for it to display it in the proper place. Sorry, my css isn’t up to snuff.Any help gratly appreciated.
Cheers