Michael Fields
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Taxonomy Images BETA] No button to add image to categoryBianca,
Hi, I made this plugin, but am having a hard time reproducing the problem that both you and anointed are experiencing. I’ll be updating the plugin with a few small changes in a few minutes. Please try to upgrade your current version. This is a compatibility release for 3.0 BETA 2. Please let me know if this fixes the button problem. I have tested in both 2.9.2 as well as 3.0 beta and all is working fine for me.This is a long shot, but it is possible that you and anointed have another plugin installed that is incompatible with Taxonomy Images. Have either of you installed a plugin that hooks into the media section at all? If so please post the name.
Best wishes,
-MikeForum: Requests and Feedback
In reply to: Improving the ww.wp.xz.cn support forumsOpt-in email notifications would be great, also having the plugin author notified whenever there’s a new topic started on their plugin.
+1 for both of these ideas especially the plugin part.
It would be nice to have a page where I can view a list of all threads tagged with a plugin name that I have uploaded to the directory. I hacked together a solution that works pretty well for the time being, but it would be great if ww.wp.xz.cn provided this functionality for all plugin developers.
Also, I would like to see better ordering of threads that I have replied to on my forum profile page. I would assume that I should see a list of threads sorted in descending order by “last active thread”. This only kinda works… I still find threads with newer replies on page 2 than on page one… there is|must be|could be|seems to be a ghost in the machine.
Thanks for everything!
-MikeAfter some thought on this… is seems like this idea should be it’s own plugin. Locking this functionality into the Taxonomy Images doesn’t make sense IMO.
Not as of yet… still on my list of things to do! I started to update this plugin last night, but got side-tracked figuring out how to shorten the descriptions while viewing multiple terms in the administration panels…. took a bit more time than I expected!
Unfortunately, I was unable to find an action that fires where I need -> This means that I will need to rewrite the functions that display the box, which may take a while to perfect. Will keep you posted.
Forum: Plugins
In reply to: Filters vs Actions -from a newbevlbooth + webgrrrl,
Thanks! I had alot of fun writing this. Glad I could help you understand the ins and outs of actions and filters – they are by far my favorite feature in WordPress.Forum: Plugins
In reply to: [Plugin: Taxonomy List Shortcode] You left out a needed fileRon,
If you would like to email me your plugin file or paste the code to pastebin, I would be happy to take a look at what might be going wrong for you. The plugin was developed on 3.0-beta2-14960 but I do not believe that the version would be a problem, because it works smoothly on 2.9.2.is_taxonomy is a rather simple function that looks a bit like this:
function is_taxonomy( $taxonomy ) { global $wp_taxonomies; return isset($wp_taxonomies[$taxonomy]); }The only way that it would return false is if your custom taxonomy does not exist in the global array
$wp_taxonomies.Which leads me to wonder if there is a problem with the code you used to create your taxonomies. Here is how I hook into wordpress to create my taxonomies and post types via functions.php. I don’t know if this is the ‘proper’ way to do things, but I have experienced success with it.
add_action( ‘init’, ‘mfields_create_custom_post_types’, 0 );
add_action( ‘init’, ‘mfields_create_taxonomies’, 1 );I hook into the “init” action and register the post types, before I register the taxonomies for them.
Hope this helps,
-MikeForum: Plugins
In reply to: [Plugin: Taxonomy List Shortcode] You left out a needed fileRon,
This is very strange indeed as I am using the plugin on my own site to create an index of terms from 3 custom taxonomies, 1 of which spans 3 different post types and everything seems to be working fine for me. Here’s a link: http://wordpress.mfields.org/index/
If you look at Each heading is the name of a custom taxonomy and “Topic” can be applied to “Posts”, “Pages” as well as custom post type “Resource”. The count is displaying correctly and the link is working. All post types and taxonomies were created by php in functions.php
I would be interested to know which plugin you are using to create you taxonomies.
Another question that I have is “Are there terms in the taxonomy?”. If you have created a Taxonomy but have not yet added any terms to it, this plugin will not display anything for the taxonomy.
Best wishes
-MikeForum: Plugins
In reply to: [Plugin: Taxonomy List Shortcode] You left out a needed fileronbme,
Thanks for pointing this out. I needed to add a new file for 3.0 support and it was checked in my svn client. Should be there in a few minutes.
-MikeForum: Plugins
In reply to: Taxonomy title outputYou will want to look at my Taxonomy Shortcode plugin version 0.8 where term paging is supported:
Forum: Plugins
In reply to: Taxonomy title outputThis should steer you in the right direction:
if( is_tax() ) { global $wp_query; $term = $wp_query->get_queried_object(); $title = $term->name; }The following properties will be available for the $term object:
term_id
name
slug
term_group
term_taxonomy_id
taxonomy
description
parent
countForum: Plugins
In reply to: [Plugin: Taxonomy Images BETA] Music Fileswould it be possible to extend or convert the use of this plugin to those items?
I think that you could convert the functionality of this plugin rather easily.. All it stores is an array of taxonomy_term_id => attachment_id. It would be quite simple to recode it to store attachment_id => attachement_id.
Yes, I think that this would be a great addition to the plugin. I will have to look into this for a future release! I can probably get things rolling this week or early next week. Thanks for you kind words and the awesome donation!!!
-Mike
Forum: Fixing WordPress
In reply to: Disallow selection of more than one categoryMaybe it’s just easier to control the option by activating/deactivating the plugin?
That’s exactly the thought that I had when I read it a second time 🙂
Forum: Fixing WordPress
In reply to: </BODY> HTML tagThanks Sam!
Forum: Fixing WordPress
In reply to: </BODY> HTML tagDamn! Second post in a row with an encoded source! No, you didn’t do anything to cause this… it was the creator of the theme. I’m not so good at decoding this stuff, but there might be another solution. Please try something like the following in your theme’s functions.php file:
if( !function_exists( 'mfields_print_infolinks_script' ) ) { add_action( 'wp_footer', 'mfields_print_infolinks_script' ); function mfields_print_infolinks_script() { print <<<EOF <script type='text/javascript'> /* <![CDATA[ */ // ADD JAVASCRIPT HERE /* ]]> */ </script> EOF; } }