Viewing 2 reply threads
  • Author
    Posts
    • #7905
      Web Guy
      Member

      I’m using Stable tag: 0.9.9.9 and want to upgrade to the latest version.

      At this point I’m using Piklist only to get checkboxes for two taxonomies.

      Here’s my code…

      /*
      Title: Claims
      Post Type: products
      */
      
      piklist('field', array(
        'type' => 'checkbox'
        ,'scope' => 'taxonomy'
        ,'field' => 'claim'
        ,'label' => 'Claims'
        ,'description' => 'Terms will appear when they are added to this taxonomy.'
        ,'choices' => array(
            
          )
          + piklist(get_terms('claim', array(
            'hide_empty' => false
          ))
          ,array(
            'term_id'
            ,'name'
          )
        )
      ));

      Do you see any issues in updating?

    • #7908
      Steve
      Keymaster

      @brinster– No. There shouldn’t be any issues.

    • #7912

      I updated from the same version and have a ton of code that works just fine.

Viewing 2 reply threads
  • You must be logged in to reply to this topic.