gregcrowe
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Popular Posts] Plugin Has Stopped Accumulating DataIf it is correctly showing information, then we have had people viewing the exact same pages the exact same times for the last three days, which I find astronomically unlikely. Also, all of the popular posts from the “last 24 hours” total 36 views, and we had far more than that according to our site statistics.
Forum: Plugins
In reply to: [Related Posts] New Version Wiped Out SettingsSorry for the delay – I forgot to update my profile with my current email, so the email notification about your reply must have went out into the ether. Anyway…
I always update plugins as soon as the WP dashboard tells me they are available, so it must have been from v3.4.9. Unfortunately, I don’t know if there is an update log for plugins, or how to access it.
The blog in question is on the site http://www.gameindustry.com. I have many plugins active on the site. Here is the current list: Add From Server, AdRotate, Advanced Custom Fields, Amazon Link, Blubrry PowerPress, Category Checklist Tree, Co-Authors Plus, Display Posts Shortcode, Enable Media Replace, Extra User Details, Get Rid of Comment Websites, Jetpack by WordPress.com, Mad Mimi Sign Up Forms, Recent Posts Widget Extended, Related Posts (of course), Simple Taxonomies, Slideshow Gallery, Social Media Feather, Stop Spam Comments, User Photo, WordPress Popular Posts, WordPress SEO, WPFront User Role Editor, WP Super Cache.
I understand that you are definitely trying your best to track this down. I know how frustrating it is when something I am working on is not working the way I intended it to. Fortunately, the plugin works great except for this slight problem.
Forum: Plugins
In reply to: [WordPress Related Posts] Plugin creates entries in media libraryThe “rp_” duplicates seem to be made of the first image of the post when there is no featured graphic, even though that image is in the same media library. Why is this duplication necessary when the original image is right there in the same library?
Forum: Plugins
In reply to: [Co-Authors Plus] Authors not showing up in "add post" edit pageJust for the record, since the update like three weeks ago, it is working just fine on my site.
Forum: Plugins
In reply to: [Related Posts] Problem with using custom field as graphicOkay, understood on the custom field.
It was weird – for a while it wasn’t pulling the first image in the post and just displaying the default. But since I checked and subsequently unchecked the custom field option, it now seems to be pulling the first image correctly. Either that or I wasn’t keeping correct track of which posts had images and which had none (which is likely, as, of the posts without a featured image we are talking about a couple thousand without images in the body, and only several dozen with). In any case, it does seem to be working correctly.
Thanks for a great plugin.
Greg
Forum: Plugins
In reply to: [Gallery Slideshow] Bug with 1.3I am experiencing the same problem. The version that is offered on this site is 1.3, and that was what was automatically pushed to my site, so I don’t know where to get the version 1.3.1.3 that you are talking about.
Since I only have one slide show on my site at the moment, I have deactivated the plugin. Fortunately, that code went away at that point.
Forum: Plugins
In reply to: [Related Posts] Coustom CSS doesn't seem to workPetra,
The “!important” tag did the trick. BTW, for future reference, I got four to fit per row in twenty fourteen’s standard Content Sidebar widget ares width of 608px with the following:
ul.related_post li { margin-right:5px !important; max-width: 70px !important; }Thanks!
Greg
Forum: Plugins
In reply to: [Related Posts] Getting Default Patterns When No Featured ImageI feel like an idiot. I didn’t see the gray “down-arrow” chevron next to “Advanced Settings” when I firsts looked at the plugin settings page. I see now where I can set a default picture.
Thanks for your quick response!
Just curious, any help on this? I need to know whether I can use the CSV importer for the custom taxonomies, or if I need to go ahead and figure out how to upload them directly to the DB. Thank you.
As you promised, the new update fixed this problem. Thanks so much!
Oh, sorry, I should have been more clear. I meant to ask what I do with guest authors who aren’t mapped to a user?
Forum: Plugins
In reply to: [Co-Authors Plus] Having trouble displaying info on author.php archive pageReally? I think displaying the featured image on author.php would be fairly general. While I like your plugin, the level of recent documentation on it is pretty sparse.
Forum: Plugins
In reply to: [Co-Authors Plus] Having trouble displaying info on author.php archive pageSorry, I didn’t mean “Advanced Custom Fields”, I meant “Extra User Details,” which I believe makes meta fields for a particular user.
Forum: Fixing WordPress
In reply to: Identify category when get_posts pulls from parentI don’t know why I couldn’t get this to work before, but this time I got it. For reference, I added the following inside the foreach loop above:
foreach((get_the_category()) as $category) { if ($category->cat_ID == 1683) { ++$gamecount; } elseif ($category->cat_ID == 8) { ++$twcount; } elseif ($category->cat_ID == 1589) { ++$bookcount; } }I then used those variables as the offsets for the child-specific get_posts queries.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Use with ACF and Yoast Simple TaxonomiesI just use text, number, and select Fields. But do I put them in the CSV file to upload with the posts, or do I upload them separately? Also, how do I deal with Simple Taxonomies in the CSV file?