tatianamk
Forum Replies Created
-
Hello!
I have the same problem as nanrector here, except it doesn’t replace my avatar. But it replaces the avatars for everybody eles!
And I double-checked, the “deactivate Gravatar” checkbox is NOT checked, so it shouldn’t be doing it, right?
My site: https://www.penseesduneshoesaholic.com
I’m using WordPress 4.0 with Bouquet theme.
Forum: Themes and Templates
In reply to: [Bouquet] Center imagesHello Kathryn,
Thank you very much for your help, it worked wonderfully! ??Forum: Themes and Templates
In reply to: Center imagesThanks! That’s what I’ll do ??
Forum: Plugins
In reply to: [CommentLuv] WordPress 4.0Same here! ??
Forum: Plugins
In reply to: My stats with WordPress 4.0Yes sorry – I am using Jetpack. It seems that my stats are back to normal though ??
Forum: Fixing WordPress
In reply to: Problem with domain emailOk sorry for asking in the wrong place ?? thank you very much for your help!
No, I have never heard of it. I do have the editorial calendar though but that can’t be it can it?
Forum: Plugins
In reply to: [WP-PageNavi] Wp_pagenavi code does not workThank you for your help ??
Forum: Plugins
In reply to: [WP-PageNavi] Wp_pagenavi code does not workThank you Lester ??
However, it still doesn’t work for some reason. ?? it looks like this now:
// Display navigation to next/previous pages when applicable function bouquet_content_nav( $nav_id ) { global $wp_query; ?> <nav id="<?php echo $nav_id; ?>"> <h1 class="assistive-text section-heading"><?php _e( 'Post navigation', 'bouquet' ); ?></h1> <?php if ( is_single() ) : // navigation links for single posts ?> <?php wp_pagenavi( array( 'query' => $wp_query ) ); ?> <?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for home, archive, and search pages ?> <?php wp_pagenavi( array( 'query' => $wp_query ) ); ?> <?php endif; ?> </nav><!-- #<?php echo $nav_id; ?> --> <?php } endif; // bouquet_content_nav