Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter feeprinzessin

    (@feeprinzessin)

    Thanks Pierre. I saw your message. Thank you for trying to contact me!

    I will try this right now. ??

    ETA: There is still a horizontal scrollbar within my shoutbox. But it does fit in the sidebar.

    When php get_footer is replaced by php wp_footer it works. The plugin works absolutely flawlessly.

    But new problems start right there;
    Footer not visible anymore

    I’m having pretty much the same problem. My footer totally breaks once I change over to <?php wp_footer(); ?> But the poll works perfectly

    Thread Starter feeprinzessin

    (@feeprinzessin)

    I’ve looked through every file, still nothing. Thank you for trying though, I will keep at it.

    Thread Starter feeprinzessin

    (@feeprinzessin)

    No, they still show up. I have no idea what it could be…

    I even took

    register_sidebar(array(
        	'name' => 'Sidebar Right',
            'before_widget' => '',
            'after_widget' => '',
            'before_title' => '<h3>',
            'after_title' => '</h3>',
        ));

    out of the functions.php, but the sidebar still shows up. I have no idea what could be telling it to display.

    Thread Starter feeprinzessin

    (@feeprinzessin)

    No, there isn’t, I even re-downloaded the theme,here to check… If it helps, this is the page.php

    <?php get_header(); ?>
    <?php get_sidebar(); ?>
    
    		<!-- Content -->
    		<div id="content">
    
    			<?php if (have_posts()) : ?>
    			<?php while (have_posts()) : the_post(); ?>
    			<!-- Post -->
    			<div class="post" id="post-<?php the_ID(); ?>">
    				<div class="post-title">
    					<div class="post-date">
    						<span><?php the_time('d') ?></span>
    						<?php the_time('M') ?>
    					</div>
    					<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    af: <?php the_author() ?> | <?php the_category(', ') ?>
    				</div>
    				<div class="post-entry">
    					<?php the_content('Read <span>more...</span>'); ?>
    					<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    					<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
    				</div>
    			</div>
    			<!-- /Post -->
    			<?php endwhile; ?>
    			<?php else : ?>
    			<!-- Post -->
    			<div class="post">
    				<div class="post-title">
    					<h2>Not Found</h2>
    				</div>
    				<div class="post-entry">
    					<p>Sorry, but you are looking for something that isn't here.</p>
    				</div>
    			</div>
    			<!-- /Post -->
    			<?php endif; ?>
    
    			<div class="clear"></div>
    
    		</div>
    		<!-- /Content -->
    		<?php if ( !function_exists('dynamic_sidebar')
    || !dynamic_sidebar('sidebar2') ) : ?>
    <?php endif; ?>
    <?php get_footer(); ?>

    Thank you.

    Thread Starter feeprinzessin

    (@feeprinzessin)

    It’s not the pages and the archives I want gone, it’s the categories and the blogroll in the right sidebar. Will this code do that?

    Thanks for your input~

    …I think the biggest problem is that I can’t find any values for the right sidebar in any of the code. (Sorry if my terminology is wrong.)

Viewing 6 replies - 1 through 6 (of 6 total)