Mindshare Labs, Inc.
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Fluency Admin] Incompatibility with Acronyms and NextGen GalleryAlso seems to have issues with Headspace2… perhaps this version was released a bit too early? The last version had no issues with any of these plugins.
Really great work though!
Forum: Plugins
In reply to: [Plugin: Fluency Admin] Incompatibility with Acronyms and NextGen GalleryIt also does not work using the One Click Plugin Updater plugin.
http://wordpress.org/extend/plugins/one-click-plugin-updater/
Forum: Plugins
In reply to: [Plugin: SlidePress] Need a trial version of slideshowpro.swfHere you go: http://slideshowpro.net/downloads/trials/SlideShowPro_for_Flash_196_TRIAL.zip
FYI this question could have been answered weeks ago if you would have simply gone to the SlideShowPro website where they clearly have a “free trial” link.
Forum: Fixing WordPress
In reply to: Making a Permanent Link to the Most Recent PostThis reply is 6-months late – but hey better late than never right?
<?php global $post; $latest_posts = get_posts('numberposts=1'); foreach($latest_posts as $latest) { echo '<a href="'.get_permalink($latest->ID).'">'.$latest->post_title.'</a>'; } ?>Forum: Plugins
In reply to: [Plugin: More Fields] AJAX Errors in 1.3 for WP 2.8.4I found this fix myself since no one responded… first let me explain the problem a bit better.
The issue: the post meta boxes would not toggle when editing Pages using More Fields 1.3 with WP 2.8.4.
The fix: open the
more-fields-write-js.phpfile and replace the following line with the ones below.FIND:
postboxes.add_postbox_toggles('<?php echo sanitize_title($type); ?>');REPLACE WITH:
<?php if ( $type != 'Page') : ?> postboxes.add_postbox_toggles('<?php echo sanitize_title($type); ?>'); <?php endif; ?>Forum: Plugins
In reply to: [Plugin: More Fields] Desperately need to be able to select imagesTwo possibilities:
1. Use the File List field type
2. Create a custom field type (See: http://labs.dagensskiva.com/plugins/more-fields/#id5)Forum: Plugins
In reply to: Search Unleased does not work with WP2.8I’m having issues as well.
Forum: Plugins
In reply to: editing wordtube playlist orderI need to do this also. Anyone?
Forum: Fixing WordPress
In reply to: [Plugin: article2pdf] Gallery export errorSame exact error message here. The only fix I know is to disable including image in the article2pdf settings. Frustrating.
Forum: Plugins
In reply to: excluding certain categories/posts from calendar widgetAnyone know if a good replacement for the default widget that already does this?
Forum: Plugins
In reply to: [Plugin: Hash Checker] Not workingNot working for me either and I just installed (4/22/09).
Forum: Fixing WordPress
In reply to: Do I need an htaccess file in wp-admin folder?I just contacted the author of the plugin and will add his response to this thread.
Forum: Plugins
In reply to: Increase number of pages/posts in “Edit Posts” and “Edit Pages” pageAnyone have a more elegant solution for this? It would be great if we could just add that option to the query string… like:
/edit-pages.php?per_page=500
Forum: Plugins
In reply to: [Plugin: Broken Link Checker] erroneous broken linksStill having this issue. Anyone?
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] WP E-Commerce error – PHP Fatal Error?Hey Dan,
I’m having the same problem… I’ve been trying to disable error logging to avoid this from continuing happening but the host the site is on sux and that isn’t working. Since switching hosts is not an option, is there something I can change in the code to prevent the error_log files from being displayed on the screen?