• Just updated to the latest wordpress, 3.0.1
    before updating – I had setup 3 custom fields which could be used with any category ie: cat_image, cat_link, cat_custom

    While on the Edit Category page this would display my custom fields, below the edit form for that category, now after the update, there is just table with no meta info for any categories being shown…

    is there any quick fix to loop through the custom fields and show on that page again? is anyone else having the same issue

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Marty

    (@mrthrust)

    If I echo out the current plugin options

    $options = get_option("wptm_configuration");

    the array comes back as..

    Array
    (
        [cat_image] => Array
            (
                [type] => text
                [taxonomy] =>
            )
    
        [cat_link] => Array
            (
                [type] => text
                [taxonomy] =>
            )
    
        [cat_custom] => Array
            (
                [type] => text
                [taxonomy] =>
            )
    
    )

    Are the taxonomy values ment to be set?

    Plugin Author elebail

    (@elebail)

    Hello,

    Yes the ‘taxonomy’ values ment to be set to ‘category’ in your case.

    The best way to solve this is to unset your 3 meta and re-set them with the new interface.
    It won’t delete the values you saved into your categories as long has you don’t update the category with non fields displayed.

    On my side I’ll look how I can fix the problem directly in the code.

    Regards,
    Eric

    Thread Starter Marty

    (@mrthrust)

    cheers Eric, ill have a wee look, let you know how i get on…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Category Meta plugin] Meta info missing from category page’ is closed to new replies.