cerupcat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Home page links to stats in dashboard.Same here, I have a lot of views to the ‘Home Page’, but it links to stats.wordpress.com so I’m not even sure if it’s counting MY homepage or not.
Forum: Plugins
In reply to: [Plugin: WordPress.com stats] vs. google analyticsBTW, if your GA pageviews were 67 and your wordpress were 284, I’d assume that you are probably missing the GA code on certain pages and therefore they’re not all being counted.
Forum: Plugins
In reply to: [Plugin: WordPress.com stats] vs. google analyticsIn google analytics, ‘visits’ are individual people views, not page views. For example, if 1 user views 10 pages, it counts as 1 visit. In wordpress stats, a view is a pageview. So you need to compare your wordpress ‘views’ stats to your google analytics ‘pageviews’ stats (not visits). So it sounds like the stats could be about right. If each visit (67) saw 4 pages that’d be about 268 ‘views’.
Mine are roughly the same. For yesterday, I had 1,573 views in wordpress stats and 1,882 pageviews in google analytics (only 939 visits).
Forum: Plugins
In reply to: [Ajax Post Carousel] [Plugin: Ajax Post Carousel] Filtering by taxonomyOk, I switched to using the php method instead of do_shortcode. I’m still testing, but this seems to be working so far if anyone is interested. This shows related category posts if on a category page or single page, related tag posts if on a tag page, and all posts if on none of the above.
if ( is_single() ) { $cats = get_the_category(); $cat = $cats[0]; // let's just assume the post has one category $cat_name = $cat->name; echo Ajax_Post_Carousel::show_carousel(0, 3, 6, 1, 0, 1, 'all', ''.$cat->name.''); } else if(is_category()){ $cat = get_category( get_query_var( 'cat' ) ); echo Ajax_Post_Carousel::show_carousel(0, 3, 6, 1, 0, 1, 'all', ''.$cat->name.''); } else if(is_tag()){ $tag = get_query_var( 'tag' ); echo Ajax_Post_Carousel::show_carousel(0, 3, 6, 1, 0, 1, 'all', 'all', 'tag='.$tag.''); } else if(is_tax()){ $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); echo Ajax_Post_Carousel::show_carousel(0, 3, 6, 1, 0, 1, 'all', 'all', ''.$term->taxonomy.'='.$term->name.''); } else{ echo Ajax_Post_Carousel::show_carousel(0, 3, 6, 1, 0, 1, 'post', 'all'); }
No problem. ??
Any idea when the new version will be available? If you need beta testers, feel free to contact me. ?? I could potentially debug some code.
I’m having the same issue and error. Did you ever work this out? If so, how?
Forum: Plugins
In reply to: [Plugin: WP-Filebase] File corruption when downloading (0.1.3.4)Same problem here. Downloads are being corrupted on download although the uploads are good. Downloading from FTP shows the files are not corrupt, but downloading from filebase is.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Cannot minify CSS filesYeah, I have very weird behavior.
If I uncheck ‘rewrite URL’, then it doesn’t work AND (since I’m using CDN) it won’t give an option to upload the minifiy to CDN.
I also have an issue if I uncheck CDN it won’t create minify file. If I have it checked, it will create it, but it never gets served.
HTML minify also doesn’t work for me I don’t believe. The page line breaks and such aren’t removed.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Cannot minify CSS filesI have the same issue, did you ever work this out? Occasionally the minified file is created, but it never replaces the original css or loads.
Yeah, it’s not limited by core.
I’ve been able to add the default category/tags by adding this to functions.php:
`function create_custom_taxonomies() {
//custom post type
register_taxonomy_for_object_type(‘category’, ‘custom-type’);
register_taxonomy_for_object_type(‘post_tag’, ‘custom-type’);
}
add_action( ‘init’, ‘create_custom_taxonomies’);Of course ideally this will be part of WP Easy Post Types.
Forum: Fixing WordPress
In reply to: Using post_tag taxonomy when creating a Custom Post TypeWere you ever able to fix this? I have the same issue. Tagging works, but custom types don’t show on the archive.
Ok thanks for the response jcollier. I didn’t realize core would be updating this. ??
Forum: Plugins
In reply to: [WP Easy Post Types] [Plugin: WP Easy Post Types] typo in classes/db.phpGood catch, I hope they put this in the next release.
Forum: Plugins
In reply to: [WP Easy Post Types] [Plugin: WP Easy Post Types] A few other improvementsnot3not4, did you ever work out a good method for getting default category/tags into custom types?
I also tried creating the category set > Name = ‘Categories’, System key = ‘category’ to match the built-in Categories taxonomy and found that while it did create the shared taxonomy, it removed categories and tags from the ‘posts’ type which is not good.
There’s also no way to delete a category or rename the system key and therefore I haven’t been able to fix this issue you and am unable to add categories or tags to my default ‘posts’ type.
chertz, any word if the plugin is still being updated and developed? There hasn’t been much activity in 5 months.
Thanks figcar! This should definitely be included in the next release.