fireproofsocks
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Content Type Manager] Custom Field Only Saves OnceSounds like a bug report should be filed. There are multiple ways to upload assets, so it’s important to list the exact steps you took.
Forum: Plugins
In reply to: [Custom Content Type Manager] It does not work! shameWhat errors are you seeing? “Does not work” is not helpful, unfortunately.
Forum: Plugins
In reply to: [Custom Content Type Manager] Display Taxonomy in content single postSorry, that’s not really a CCTM question, it’s a WordPress one, and yes, as I stated previously the WP functions are often confusing, poorly thought-out, inconsistent, and difficult to use. Any single post (of any type) can have many taxonomies, so it’s never as simple as just printing a single value (as is done with the print_custom_field() example): you are always retrieving a list of results, so you have to loop over them somehow.
The example on http://codex.ww.wp.xz.cn/Function_Reference/wp_get_post_categories is relevant to you. Here it is a bit more verbosely modified:
$post_categories = wp_get_post_categories( $post_id ); foreach($post_categories as $c){ print '<li><a href="'.get_term_link($c->slug, $c->name).'">'.$c->name.'</a></li>'; }Forum: Plugins
In reply to: [Custom Content Type Manager] Possible Issue with WP 3.8 & CCTMThanks for the support! Donation link: https://www.paypal.com/us/cgi-bin/webscr?cmd=_flow&SESSION=eaH8_40t-71d-c8_xa0NvSWIjRvtwAJjqdJYhXDbrNge7-6bp2fcdIVelQu&dispatch=5885d80a13c0db1f8e263663d3faee8def8934b92a630e40b7fef61ab7e9fe63
Issues and the wiki are here: https://code.google.com/p/wordpress-custom-content-type-manager/issues/list
Forum: Plugins
In reply to: [Custom Content Type Manager] Possible Issue with WP 3.8 & CCTMIt’s in the bug-tracker — I just need a paying gig so this can get on my radar.
Yes: CCTM settings are stored in the wp_options table. There is a tool to export/import the CCTM settings that gets around the WP limitations/myopia.
Re the permissions, I don’t think a hack is necessary: you can override the built-in config file as described here: https://code.google.com/p/wordpress-custom-content-type-manager/wiki/Config_admin_menu
Forum: Plugins
In reply to: [Custom Content Type Manager] How Hide the built in editor?Might be possible… WordPress’ implementation of its rich-text editor is problematic however, so it’s not easily manipulated. I generally do not recommend mixing and matching plugins like this: sometimes plugins cause as many problems as they solve. I would recommend you create a separate post-type for your needs and utilize that if needed — it’s always inefficient to “ignore” the built-in fields, and in the case of the post-title, it’s also problematic (WP is hard-coded to look for that value in certain random spots).
Forum: Plugins
In reply to: [Custom Content Type Manager] Object filtering seems not to workNo solution is suggested because I’ve had no time to develop one and every time a potential paying project comes up, people balk at even modest quotes to fix the issue, so I’ve not been able to prioritize development here and the fixes are slow to come out.
Forum: Plugins
In reply to: [Custom Content Type Manager] Object filtering seems not to workSounds like this one:
https://code.google.com/p/wordpress-custom-content-type-manager/issues/detail?id=532Forum: Plugins
In reply to: [Custom Content Type Manager] Date Format in Summarize Posts WidgetYou can use an output filter for that: https://code.google.com/p/wordpress-custom-content-type-manager/wiki/datef_OutputFilter
There’s an example there for using it in a shortcode.
Forum: Plugins
In reply to: [Custom Content Type Manager] Display All Content in cctm_post_form emailSure. The fields are listed in a few spots in the (slightly disorganized) docs, e.g. under “Available Placeholders” https://code.google.com/p/wordpress-custom-content-type-manager/wiki/summarize_posts_shortcode
Yes, you can do filters like this using either the shortcode or the PHP variation. You can set the date_min or date_max values and the date_column parameter to be your custom field — see https://code.google.com/p/wordpress-custom-content-type-manager/wiki/get_posts#date_min
Forum: Plugins
In reply to: [Custom Content Type Manager] Object filtering seems not to workSorry I’m late seeing this — I”m not sure what you’re trying to do… did you create a custom post-type named “FILE”? What browse button are you referring to? There is a bug in the plugin related to searches in the metabox that may be what you’re experiencing.
I’m not sure, to be honest: I haven’t done much testing using multisite because wp is quite limited in what it supports for multisite dev environments.
Forum: Plugins
In reply to: [Custom Content Type Manager] How Hide the built in editor?It’s not possible to hide it on the built-in content types. But you can disable fields on custom post types by de-selecting the post content checkboxes in the fields tab.