fireproofsocks
Forum Replies Created
-
By “can’t disable friendly URLs” do you literally mean you are unable? Or do you mean that “I don’t want to because the project requires use of friendly URLs”? I just want to make sure I understand.
If this is the same bug as I linked, then there’s a link to a workaround there. If this is something different, then please supply system and version details and include information on how to reproduce the error. See https://code.google.com/p/wordpress-custom-content-type-manager/wiki/ReportingBugs
I think you’re experiencing this: https://code.google.com/p/wordpress-custom-content-type-manager/issues/detail?id=534
Yes, it’s a pain. I’m working on it, but it’s a very difficult issue, but I hope to have a solution for it soon. For now, the easiest option is to disable friendly URLs.
Forum: Plugins
In reply to: [Custom Content Type Manager] Image upload alternativesYou could create your own custom field type: https://code.google.com/p/wordpress-custom-content-type-manager/wiki/CustomCustomFields
Forum: Plugins
In reply to: [Custom Content Type Manager] Upgrade to 9.7.13 broke custom dropdownsA bug was reported and fixed here: https://code.google.com/p/wordpress-custom-content-type-manager/issues/detail?id=545
If you can provide steps to reproduce I can reopen the issue.
Forum: Plugins
In reply to: [Custom Content Type Manager] Image upload alternativesThat’s tough — I haven’t written any stand-alone upload functionality. I’ve tried to reuse WP’s media manager as much as possible (even though it is not written very modularly). I don’t think permissions will do anything for you there either — the task is all about validating files and managing the paths where the uploaded files are stored.
Forum: Plugins
In reply to: [Custom Content Type Manager] Auto Post Images with Custom Content TypeI’m not sure what you mean by “auto poster”, and I’m unclear on what it is you’re doing here. If you’re trying to add a thumbnail image to your post, this is easy enough to configure and it sounds like you’ve got that set up — but it’s entirely up to your theme (not to the CCTM) as to how (or if) you display that image in your them.
Forum: Plugins
In reply to: [Custom Content Type Manager] Can't Edit or Add Posts to CCTMCalling this closed. Post back with more info if relevant.
Forum: Plugins
In reply to: [Custom Content Type Manager] It does not work! shameCalling it closed due to lack of info.
Forum: Plugins
In reply to: [Custom Content Type Manager] Hide WordPress Editor Box“WP sometimes doesn’t like it”… well, it’s hard for me to politically correct when vast sections of the core code appear to have been written by the participants at an 8th grade slumber party. Yes, not including that field in a post-type might crash the site, other plugins might fail to execute, other bad things may happen and you might never know because the 8th graders didn’t find it necessary to include a logging queue in their application. So yeah, ouch, rant, etc.
The specific problem I’ve encountered here is that the loading of the richtext editor triggers other events, and then other critical tasks (and sometimes other plugins) are hooked to those events, so if you don’t include that field, you may inadvertently trainwreck the edit page because you broke the daisy-chain. It’s a huge weakness in any event-driven app, especially one that is basically without documentation. I think I’ve patched all the leaks in the dam with regard to this particular issue, but with each new version of WP including an increasing number of undocumented events and filters, it’s hard to stay on top of. Omitting the post_title field is even more problematic.
In a word, certain customizations were apparently never considered by the core team, so attempting to make hard-coded spaghetti into a modular design pattern after the fact is hell for 3rd party developers. It is *probably* ok to omit that field, but I really try to educate users so they know what they’re in for when they opt for WP — it’s a bit like a classic car. It might turn heads, appear stylish, etc, but it might not survive a serious road trip. I’m yabbering on longer than I should, but hopefully that makes sense to you.
Forum: Plugins
In reply to: [Custom Content Type Manager] [summarize-posts] PaginationaI added some stuff to the dev version to make pagination work more easily with just the shortcode that will go out with the next version.
Forum: Plugins
In reply to: [Custom Content Type Manager] PaginationThis is a duplicate of this post, no? http://ww.wp.xz.cn/support/topic/summarize-posts-paginationa?replies=3
Sorry, this isn’t really documented for end-users yet. I’m working to improve the documentation, but pagination is subtly complex and implementing it on your site takes some developer know-how.
Forum: Plugins
In reply to: [Custom Content Type Manager] Hide WordPress Editor BoxYes: when you define your custom post type, go to the “Fields” tabs, and you can uncheck the post content box. WP sometimes doesn’t like it when that field is disabled, but it can be done.
Forum: Plugins
In reply to: [Custom Content Type Manager] single post not showingYeah: WP url handling is trouble, and unfortunately the simple ugly urls work the best.
Forum: Plugins
In reply to: [Custom Content Type Manager] chain select dropdowns linked checkboxesI’m not really sure what you’re asking — better to work with specific questions. The FAQs aren’t going to help you figure out how to solve broad architectural problems. I’m not even sure what data you’re trying to store. Teachers and Subjects could work well as custom content types, but grades? What’s being graded? Sorry, I’m quite confused.
Forum: Plugins
In reply to: [Custom Content Type Manager] Possible Issue with WP 3.8 & CCTMI’m working on fixing this — the WP architecture surrounding URLs is not easy to work with, unfortunately. Since the time commitment is considerable, I’m considering implementing this as part of a pro version of the CCTM.