Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter lshub

    (@lshub)

    John, I did a quick check today and it seems to be back to normal.

    At this time, I don’t have any other plugins installed that would affect the login mechanisms. I am still hoping to add a plugin to link to Facebook, but really think that was the problem yesterday.

    The ‘Switch To’ link always showed, but it wouldn’t switch users. The page switched but not the user. I remained logged in as the admin.

    LaDonna

    Thread Starter lshub

    (@lshub)

    Thank you!! That’s what I needed. You have made my day! It works in Safari and Firefox. I will have to wait to check it in Explorer

    Thread Starter lshub

    (@lshub)

    Here is the code I used for the template page: (It is copied from something I found online, so I don’t fully understand it.)

    <?php
    /*
    Template Name: Widgetized Page
    */
    get_header(); ?><title>page_widgetized</title>
    
    		<div id="primary">
    			<div id="content" role="main">
                <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("widgetized-page-top") ) : ?>
    <?php endif; ?>
    				<?php /* Start the Loop */ ?>
    				<?php while ( have_posts() ) : the_post(); ?>
    
    					<?php get_template_part( 'content', 'page' ); ?>
    
    					<?php comments_template( '', true ); ?>
    
    				<?php endwhile; // end of the loop. ?>
    
    			</div><!-- #content -->
    		</div><!-- #primary -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    Thread Starter lshub

    (@lshub)

    I have looked at the page with Firebug. I am a graphic designer and not a computer programmer, so I’m not sure which part of the template you’re referring to. All of the link info is there for all the authors.

    The list is a sidebar widget that I moved with CSS so that it will appear in the content part of the page.

    That was the only way I could find to get it to work since pages won’t accept php coding.

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