Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    A great plugin, but I am facing a problem.
    When a user login using Google + and then logout and again login with a different Google + Account, it still shows the previous account details.

    Say I login using Account A, and then logout, now when I login again using Account B, it still displays the details on Account A.

    Is there some session or cookie related issue?

    https://wordpress.org/plugins/social-connect/

    Try This,
    logout ur google+ account also.

    <div id="talent-main">
    
    <?php  $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
        $args = array(
            'post_type' => 'talent',
            'posts_per_page' => 2,
            'paged' => $paged
        );
        $loop = new WP_Query( $args );
    ?>
    
    <?php
    		  if ( $loop->have_posts()) :  while ($loop->have_posts()) :$loop->the_post(); ?>
              <div id="post-<?php the_ID(); ?>" <?php post_class('multiple') ?>>			
    
                      <div class="post-image-talent">
                          <a class="post-frame <?php the_ID(); ?>" href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"></a>
                          <?php the_post_thumbnail('video-talent-thumb'); ?>
                      </div>
                  	  <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_short_title('', '...', true, '22') ?></a></h2>
              </div> 
    
    	  <?php endwhile;?>
    
    <?php if(function_exists('wp_simple_pagination')) {
        wp_simple_pagination();
    } ?> 
    
          <?php else : endif; ?> 
    
    	  <?php //wp_reset_query();	?>
    </div> <!-- main -->

    what i did wrong here??

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