lshub
Forum Replies Created
-
Forum: Plugins
In reply to: [User Switching] Some users will switch, some won'tJohn, 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
Forum: Fixing WordPress
In reply to: WP_list_authors not linking when placed in 3 col. formatThank 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
Forum: Fixing WordPress
In reply to: WP_list_authors not linking when placed in 3 col. formatHere 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(); ?>
Forum: Fixing WordPress
In reply to: WP_list_authors not linking when placed in 3 col. formatI 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.