• Resolved [email protected]

    (@jeffgoseesecom)


    Hello, I installed this plugin in a wp 3.01 theme with out any other plugins installed.

    After I configured a custom meta field for the post tags of type text, and created a tag I noticed that my configuration to use a static page as the front page was no longer working. The front page was reverting to the blog entries for the site.

    I narrowed it down to line 71-ish.


    taxonomies=get_taxonomies('','names');

    I think due to a name/global name conflict. But the fix was so easy I didn’t bother looking into the reason for it any further.

    I fixed it by changing the loop starting at line 71 to this.


    $my_taxonomies=get_taxonomies('','names');
    if (is_array($my_taxonomies) )
    {
    foreach ($my_taxonomies as $my_taxonomy ) {
    add_action($my_taxonomy . '_add_form_fields', 'wptm_add_meta_textinput');
    add_action($my_taxonomy . '_edit_form', 'wptm_add_meta_textinput');
    }
    }

    https://www.ads-software.com/extend/plugins/wp-category-meta/

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Category Meta plugin] Problem caused in WP 3.0 with static home page’ is closed to new replies.