ken524
Forum Replies Created
-
Thanks a million, Jeremy! Everything is working again.
I’ll read up on the Development mode.
Cordially,
KenFollow up… It looks like I have two blog IDs/JetPack IDs that are mixed up in my _options table and the Jetpack system. (59624132, 105465014) I tried making the jetpack_options id the same as the blog_id, but that generated an error. Still no stats.
Hi Jeremy,
I’m almost embarrassed that I didn’t try clearing the cache before posting. Clearing the iOS Safari history and data did the trick. Thanks for the suggestion!!
BTW, although the stats pages isn’t “responsive,” it still looks super on an iPhone in landscape. I use it all the time and really appreciate seeing all the data on the go!
Have a great weekend.
KenHi Ryan,
That will work perfectly. Thank you!
Ken
Forum: Plugins
In reply to: [Yoast SEO] Meta Twitter Card Content Galleryfwunder,
I discovered the same problem today.
THANK YOU!!Ken
I got the recommended code to work by building and installing it as a Plugin.
Now my question is: why does the code work as a plugin but not as part of my functions.php?Disregard… Started a new thread with my issue. (Sorry!)
Hello,
I I’m using JetPack 3.0.2 and WordPress 3.9.1. I have a custom functions.php file in my child theme.I’m trying to exclude a category from my JetPack Mobile theme and it seems to ignore the code found here:
https://jetpack.me/2014/02/26/exclude-a-category-from-mobile-theme/I have replaced the “-1” with my desired category (-171) but the posts in that category still show.
I’m using the following code in my functions.php to exclude category 171 for the non-mobile theme with no problems:
function my_exclude_category( $query ) { if ( $query->is_home ) { $query->set( 'cat', '-171' ); } return $query; } add_filter( 'pre_get_posts', 'my_exclude_category' );
I also tried removing all other functions from the functions.php file to make sure nothing was interfering, but that still didn’t work.
Any ideas what could be causing the problem?
Thanks!