ryanleesharp
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Plugins
In reply to: [Plugin: Cimy User Extra Fields] fields not showing up on author profile pageI’m now having a similar issue, but I feel like I’m including the code you’re suggesting…
<?php //initializing variables global $wp_query; $query_vars = $wp_query->query_vars; //loading resources $curauth = get_userdatabylogin($query_vars['author_name']); $values = get_cimyFieldValue($curauth->ID, 'POSITION'); $content = cimy_uef_sanitize_content($values); ?> <?php get_header(); ?> <div id="leftColumn"> <img src="<?php bloginfo('template_url'); ?>/images/content_top_shadow.png" width="607" height="10" class="content_tb_shadow" /> <div id="contentBackground"> <div id="contentAuthor"> <div id="contentTitleAuthor"> <h1><?php echo $curauth->first_name.' '.$curauth->last_name; ?></h1> <div id="jobTitle"> <?php echo $content; ?> </div> <div id="email">| <?php echo $curauth->user_email; ?></div> <br /> </div> <div id="postContents"> <?php echo get_avatar( $curauth->ID, 350 ); ?> <div id="postList"> <ul> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li><?php the_time('m/j/Y') ?> - <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?> "><?php the_title(); ?></a></li> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> </ul> </div> <img class="authorBar" src="<?php bloginfo('template_url'); ?>/images/footer_bar.png" /> <p><?php echo $curauth->user_description; ?></p> <img class="authorBar" src="<?php bloginfo('template_url'); ?>/images/footer_bar.png" /> </div> </div> </div> <img src="<?php bloginfo('template_url'); ?>/images/content_bottom_shadow.png" class="content_tb_shadow" /> </div> <!-- END COMMENTS | START SIDEBAR --> <?php include (TEMPLATEPATH . '/sidebar-blog.php'); ?> </div> <!-- END SIDEBAR | START FOOTER --> <?php get_footer(); ?>
It’s not showing up as you can see on this page…
https://blog.zuberance.com/blog/author/cara-fuggetta/
Any ideas? Thanks.
Forum: Developing with WordPress
In reply to: Remove h1/bookmark/page title on certain pages…Great! Thanks so much. It works. Cheers!
Viewing 2 replies - 1 through 2 (of 2 total)