markaronkanning
Forum Replies Created
-
Forum: Reviews
In reply to: [Export All Posts, Products, Orders, Refunds & Users] Where is it?I went through all of that again only to discover that Advanced Custom Fields support isn’t native. This has consumed far too much of my time. I’m moving on.
Forum: Plugins
In reply to: [Export All Posts, Products, Orders, Refunds & Users] Unable to find menuI installed and activated both plugins described above and…nothing. I can see the menu item for the CSV plugin, but not the importer.
Forum: Developing with WordPress
In reply to: Limit tag archive to custom post type@sterndata, that’s SOOOO funny!! I saw a similar solution somewhere involving passing something like “?posttype=movie” in the tag link and doing the filtering based on that via a functions.php method.
I may just do the custom taxonomy and compel the client to redo the tagging. They got the cash.
Thanks!
Forum: Developing with WordPress
In reply to: Limit tag archive to custom post type@coreymckrill, I’ve got CPT UI running already for what I’ve done so far. And that solution occurred to me, too. The issue with using another custom taxonomy (instead of native tagging) is that the client has already attributed tons of tags to tons of existing posts. I didn’t want to make them do redundant work if they didn’t have to.
Thanks for the input!
Forum: Plugins
In reply to: wp_editor() with tinyMCE missing certain buttons like linkApparently, on the internet wp_editor() is like Fight Club: you don’t talk about it.
Forum: Fixing WordPress
In reply to: Image links broken when image is relocated in contentTo clarify, I mean the image links that WordPress automatically applies when an image is inserted into the content area.
Forum: Fixing WordPress
In reply to: wp_nav_menu Custom Walker IssueThanks! I may do that.
Forum: Fixing WordPress
In reply to: wp_nav_menu Custom Walker IssueI must’ve really pissed off the WordPress Gods.
Forum: Fixing WordPress
In reply to: Image gallery editor with wp_editorWow. Crickets.
Forum: Plugins
In reply to: [Custom Post Type UI] Incoming version 1.0.2Hey Michael,
I just read the comment by rpkoller on GitHub and I think he’s got some good ideas. The analogy to Advanced Custom Fields was a good one. ACF does a great job of handling a complicated data set in a comprehensive way. Also, the listing of custom fields behaves just like the WordPress pages/posts sections with the familiar group of edit/duplicate/trash buttons for each listing (no UX learning curve!).
One last thing: the import/export functionality of ACF is pretty straight forward, too. On the export screen, you just choose via checkboxes the fields you want to export and hit a “Download” button. The import screen is just uploading the exported file. Voila!
Anyway, I hope this is helpful info. Happy coding!
MarkForum: Plugins
In reply to: [Custom Post Type UI] Incoming version 1.0.2ATTENTION ALL!! I’ve got a simple fix that doesn’t require reverting:
If you’re getting the 404 error issue after applying the new update, simply go into the Edit Post Type screen in the CPT UI admin, choose any custom post type for editing, the hit the Edit Post Type button without making any changes. This will reestablish all of your permalinks for you custom post types.
I had multiple sites that broke because of this and I was able to fix them all quickly with this method.
Michael, this issue aside (shit happens sometimes, I know), I have to say I’m not a big fan of the UX/UI change. The previous version’s presentation for listing out custom post types/taxonomies was more comparable to a basic WordPress interface and, therefore, more familiar and comprehensible. The accordion functionality of the labels/settings fields feels a little clumsy, too, and doesn’t fit well on smaller screens.
Friendly suggestion: make the UX/UI look and feel just the default interface for pages/posts. In other words, just have them list out in the same fashion with an “Add New” button next to the section title. That way you don’t have to teach folks how to use a new interface.
That said, it’s a great plugin and I really appreciate your hard work!
Thanks!
MarkForum: Plugins
In reply to: Advanced Custom Fields Pro: won't updateWill the plugin author please respond to this? It’s beginning to be an issue on multiple sites. I don’t want to invest any more time in this version of the plugin if it’s not going to behave like a regular plugin.
Thanks!
Forum: Fixing WordPress
In reply to: Get the post type for any archive, category, or single postOh. Poop. The dev reference made it seem like get_post_type() only worked if you passed it a post ID, which implies it only works on posts/pages. I just confirmed it works anywhere inside the blog.
Thanks for pointing that out, Cyril!
Forum: Fixing WordPress
In reply to: WP gallery shortcode images link settingIf you want to force the link to be directly to the image itself, go to around line 762-ish where this code appears…
$link = isset($attr['link']) && 'file' == $attr['link'] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, true, false);Change it to just this…
$link = wp_get_attachment_link($id, $size, false, false);You should get direct links to the big image after that.