web559
Forum Replies Created
-
Did you ever figure this out?
Forum: Plugins
In reply to: [WP REST API (WP API)] Passing filtersThanks. I didn’t find this on the docs.
Forum: Plugins
In reply to: [Edit Flow] How to get a post status description in Edit FlowWhen I add that, I’m getting
Fatal error: Call to a member function get_custom_status_by() on a non-object— I am using it in the context of a filter (onef_notification_recipients); how would I get this to work?What I’m attempting to do is globally control who gets which status notifications. In my organization, different email lists need to know about a post at different stages in the production process, and rather than adding people to the notification checklist on a per-post basis at each stage, I want to attach default list of email addresses to each post status. Did that make sense?
I was using status descriptions to specify a simple comma-separated list of email addresses to associate with each post status. There’s surely a nicer way to do it, but I thought this would be easy to set up and manage, and I need it to be editable from the front end.
This is a great plugin concept. I would also *love* to see custom taxonomy support.
Forum: Plugins
In reply to: [Better Related Posts] [Plugin: Better Related Posts] Hugh Database TablesAlso wondering what the status of this is.
FYI Chartbeat, 1.4.1 seems to be numbered as 1.4, so that it doesn’t offer itself as an automatic update from within WordPress. The version on ww.wp.xz.cn still says it’s 1.4.
/* Plugin Name: Chartbeat Plugin URI: http://chartbeat.com/wordpress/ Description: Adds Chartbeat pinging to WordPress. Version: 1.4 Author: Chartbeat Author URI: http://chartbeat.com/ */Certainly 🙂
This is a great plugin!
It seems that the problem was with some code in functions.php. Specifically, this snippet to add the TinyMCE editor to the post excerpt textarea— http://wpsnipp.com/index.php/excerpt/enable-tinymce-editor-for-post-the_excerpt/
The same thing happens to me in version 1.0.8 with WordPress 3.3 beta 2. There seems to be a javascript error, because all the other js functionality is broken on the page as well (show-hide switches, post status changer, flyout menus, etc.). It happens in multiple browsers.
The console shows this error:
ReferenceError: Can't find variable: tinyMCE /wp-admin/post.php?post=845&action=edit&message=6:51Do you know how to fix this?
This would be cool.
Thanks! 2.2.3 works great.
One things I noticed—
Only the current date is highlighted (in blue) when I open the calendar. The post date is not highlighted. I vaguely recall the post date being highlighted in red/orange in previous versions (?). In any case, it would be a nice feature to highlight the actual post date in the calendar, because it makes it easier to work with.It might also make sense for the default month to be showing in the calendar to be the original post month instead of the current month, but not 100% sure.
ps. Not a plugin issue, but the .org plugin page shows Last Updated: 2011-6-10. Not sure why it’s not showing the newer version date. http://ww.wp.xz.cn/extend/plugins/admin-management-xtended/
With 2.2-alpha3 the input field works, but it’s just a plain text field – auto-suggest is not working. The console shows 2x of this error:
TypeError: 'undefined' is not a function (evaluating 'this.input.suggest')I figured out that the problem is coming from the
fee_choose_taxonomy_interfacefunction that is supposed to set which term interface to use, dropdown or autosuggest.I copied this code straight from https://github.com/scribu/wp-front-end-editor/wiki/Editing-taxonomies into my functions.php:
function fee_choose_taxonomy_interface( $data ) { if ( isset( $data['taxonomy'] ) ) $data['type'] = 'terminput'; return $data; } add_filter( 'front_end_editor_wrap', 'fee_choose_taxonomy_interface' );Including that code causes term editing to stop working—i.e., no Edit link appears when you hover over the terms. It only breaks if the type is set to
'terminput'. If the type is'termselect', it works fine.So: is there something wrong with terminput? These are hierarchical taxonomies.
Forum: Networking WordPress
In reply to: embedded absolute urls change to relative urlsSafari is fine—on my Mac, absolute links copied from Word to Safari come out correctly, as absolute links.