Stephanie Leary
Forum Replies Created
-
Forum: Plugins
In reply to: [Blog Copier] Blog Copier doesn't copy imagesI’m having this issue as well.
Forum: Plugins
In reply to: [HTML Import 2] Remove custom field data from content areaHow comfortable are you with code? In the html-importer.php file, the $customfields array is populated by line 587 or so. Somewhere between that and wp_insert_post(), you could use str_replace() to remove one of the $customfields elements from $my_post[‘post_content’].
Forum: Plugins
In reply to: [Content Audit] Deprecated calls since 4.5Thanks! This is fixed in 1.9, which should be showing up right about now.
Forum: Plugins
In reply to: [HTML Import 2] Slug Folder Name Instead of FilenameLook for the following code around line 338:
if ( isset( $options['preserve_slugs'] ) && '1' == $options['preserve_slugs'] ) { $filename = basename( $path ); $my_post['post_name'] = substr( $filename,0,strrpos( $filename,'.' ) ); }
… and change it to:
if ( isset( $options['preserve_slugs'] ) && '1' == $options['preserve_slugs'] ) { $my_post['post_name'] = dirname( $path ); }
Sorry about that, everyone. As you can see by the lack of replies here, I’ve been swamped. I’ve just updated the plugin to remove the old junk that was causing problems in PHP 7.
Forum: Plugins
In reply to: [HTML Import 2] Importing myspace html dumpThat’s great! Congratulations on getting your stuff out of MySpace!
Forum: Plugins
In reply to: [HTML Import 2] Tags require exact matches – caution and suggestionI’m hoping to implement phpQuery at some point, so we can use CSS/jQuery-style selectors instead of exact matches. Alas, I’ve been swamped with paying work and haven’t had time to devote to my plugins!
Forum: Plugins
In reply to: [HTML Import 2] Suggestion: Would be nice to save settingsI agree, and it’s on the to-do list!
Forum: Plugins
In reply to: [HTML Import 2] Migrating ecommerce website to wordpressThis usually happens when you haven’t found the right tag/attribute/value settings for your content, and/or your chosen tag isn’t present in all the files. The latest update 2.6, should fail gracefully in these cases.
See the user guide if you’re not getting any content. You might need to adjust your value setting to include everything in a “class” attribute, for example–this plugin works by exact match, rather than more forgiving jQuery/CSS-style selectors. (Someday.)
Forum: Plugins
In reply to: [HTML Import 2] Import showing fatal errorThere was some very, very old code in there that included functions removed in PHP 7. I’ve just updated the plugin to fix that.
Forum: Plugins
In reply to: [Content Audit] Updated Japanese language filesI’m committing your current version to GitHub, but I’ve also found a number of strings that weren’t properly wrapped. If you’d like to submit a patch, I’ll merge it ASAP.
https://github.com/sillybean/content-auditForum: Plugins
In reply to: [Content Audit] Updated Japanese language filesThank you! I’m so sorry I missed your initial post. This will be in the next version!
Forum: Plugins
In reply to: [Content Audit] Sparklines no longer workingThanks. I’ll try to find another plugin to recommend.
Forum: Plugins
In reply to: [Content Audit] Content Audit Fields Not Showing Up In Page EditorThank you, Curtiss! I’m slowly getting all my plugins up on GitHub. I would love a pull request for this:
https://github.com/sillybean/content-auditI’m also planning to add some hooks and filters throughout. The CSV columns, for sure. Anything else you’ve come across that would be handy to modify?
Forum: Plugins
In reply to: [Content Audit] Email notificationsI will. Thanks for letting me know.