eliotc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How-To: Using with User Photo PluginHey Weston, thanks for the great plugin.
I’m having some trouble with the coauthors_wp_list_authors() function.
I have a post with two authors using the plugin. The first author has other posts, but the second has only the one post on which he is a co-author.
Should the second author show up when coauthors_wp_list_authors() is called? At the moment, his name doesn’t come up. I’ve tried the different arguments for the function, such as hide_empty, but with no luck so far.
Could you help me out?
Thanks again! Great plugin!
Forum: Plugins
In reply to: Recommended Tags Pluginwhoop, thanks anyways. Decided to go with Simple Tags, which doesn’t use a separate field.
Forum: Plugins
In reply to: Genki Youtube Comments plugin errorhey thanks! I’ve tested it out and it looks like it’s working.
i’ve set it to update daily, so hopefully that works too.
thanks again.
Forum: Plugins
In reply to: Recommended Tags PluginHey thanks for the great plugin.
Having trouble with duplicate tag input fields. When a user goes to Write a Post, they see two boxes to input tags – one right above the submit button (the original input textfield), and one right below the submit button (the Recommended Tags input txtfield)
Is this a problem for anyone else, and if so, is there a solution?
Thanks!
Forum: Fixing WordPress
In reply to: Trackbacks, Pings and Custom Fieldsended up using the custom fields GUI and some custom javascript (ugh)..
Forum: Plugins
In reply to: preg_replace to link all images in content?i ended up using a hacked up version of the Image Resizer plugin.
Forum: Plugins
In reply to: Genki Youtube Comments plugin errori’m going to mark this as resolved since the plugin author has indicated that no further development will occur on this project (unless someone wants to take it on).
Forum: Plugins
In reply to: Adding link to image in iMax Width PluginI opted for this instead:
http://wordpress.org/extend/plugins/wordpress-image-resizer/Forum: Fixing WordPress
In reply to: Trackbacks, Pings and Custom Fieldssorry, i’m talking about Pingbacks, not trackbacks.
Forum: Plugins
In reply to: help: need to append text to content and excerptHi dirkhaim,
could you provide some more detail on how you used $wpdb->query to append text onto the content?I’m trying to do the same thing and would like to avoid re-inventing the wheel if possible.. thanks!
Forum: Plugins
In reply to: Genki Youtube Comments plugin errorOk i’ve taken a look at the XML from the new Youtube API and it’s completely different than the legacy API. This means that a major rewrite is probably going to be necessary.
For example, you’re getting the “Error retrieving data from YouTube” because the plugin is checking that the status of UT_RESPONSE[0] is set to OK. But UT_RESPONSE doesn’t exist in that way in the new API.
So this part (line 156):
($x->data->UT_RESPONSE[0]->_attr->STATUS == ‘ok’)
is gonna have to go.Whereas this part:
($x->data->UT_RESPONSE[0]->VIDEO_DETAILS[0]->COMMENT_COUNT[0]->_text != 0)
is going to have to be rewritten.Maybe something like
($x->data->FEED[0]->OPENSEARCH:TOTALRESULTS[0]->_text != 0)Forum: Fixing WordPress
In reply to: google video and custom fieldsold post. Sorry if this is irrelevant now:
did you try Viper’s Video Quicktags plugin?
Forum: Fixing WordPress
In reply to: Custom Fieldslook for the $value of the custom field instead…
so if you instead of: if (function_exists(‘get_post_meta)
use: if ($value)this will also help avoid problems if the users selects a custom field but doesn’t enter a value.
Forum: Plugins
In reply to: Genki Youtube Comments plugin errorI think this may have to do with Youtube changing its API.
Comments are no longer showing up in the XML generated by the API, so the foreach array is non-existent (therefore giving the error).If anyone has any ideas about a fix, please let me know. Thanks.