artgeek
Forum Replies Created
-
Forum: Reviews
In reply to: [Rapidology - by LeadPages] Complete Rip off a Premium Elegant Themes PluginBy all means, gnash your teeth about the “spirit” of the GPL, but please don’t use women’s bodies as your metaphor for doing so. This convo has taken an ugly sexist turn that is completely unnecessary.
Thank you, sunilwilliams, for your level-headed comments about the GPL, this situation and for calling out this metaphor.
Forum: Plugins
In reply to: [MZ Post and Page Excerpts Widgets] Page excerpt doesn't respect length?Also, unsure if this is related, but in my plugin directory mz-page-excerpt.php is a bank file?
Forum: Plugins
In reply to: [Flexible Posts Widget] Filter by metadata?Sorry, link to pastebin accidentally includes the end parentheses; try this: https://pastebin.com/nGzdrLUK
Forum: Plugins
In reply to: [WP Better Attachments] Gallery display?thanks for this, it’s definitely put me on the right track ??
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Plugin does not dynamically updateBrava, ACarlsson. I had actually just edited down the time of the cache, but I think this is actually a better solution.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Plugin does not dynamically updateRunning into this same issue; a 12-hour cache is actually a big deal for sites that update periodically throughout the day.
Forum: Plugins
In reply to: [Advanced Excerpt] [Plugin: Advanced Excerpt] Images and Header TagsIn my install, I’m also encountering the issue with headers (i.e., they show up as plain text). I’m using the most current version of WP (3.4.2).
I am having this same issue using the widget, but altering the most recent post date hasn’t fixed it. Any help?
Forum: Plugins
In reply to: [Plugin: wp-forecast] Marine forecast?Apologies, I meant water temperature. Thanks for looking into this possibility, tuxlog!
Forum: Plugins
In reply to: [Plugin: Xavin’s List Subpages] WP 2.7Anyone know if it’s compatible with WP 2.8?
Forum: Fixing WordPress
In reply to: Only show tiers 1 and 2 of navigation (no grandchildre/subsubpages)Figured it out; this gave the result I was looking for:
<div id="submenu"> <?php if($post->post_parent) { $parent = get_post($post->post_parent); if ($parent->post_parent) { $children = wp_list_pages("depth=1&sort_column=menu_order&title_li=&child_of=".$parent->post_parent."&echo=0"); } else { $children = wp_list_pages("depth=1&sort_column=menu_order&title_li=&child_of=".$post->post_parent."&echo=0"); } } else $children = wp_list_pages("depth=1&sort_column=menu_order&title_li=&child_of=".$post->ID."&echo=0"); if ($children) {?> <ul><?php echo $children;?></ul> <?php }?> </div>
Forum: Fixing WordPress
In reply to: Fix for the previous/next entry link problem…THANK YOU SO MUCH. This issue was driving me bonkers, and this finally solved it.