Forum Replies Created

Viewing 15 posts - 1,981 through 1,995 (of 2,964 total)
  • Author
    Posts
  • in reply to: Conditional field logic not working #3183
    Steve
    Keymaster

    @ehoanshelt– We’re working on a backlog here. Sorry for the delay. Do you have a deadline?

    in reply to: Can I access the beta now from github? #3180
    Steve
    Keymaster

    @sakib– The Piklist beta should be in your inbox.

    As for the user password, we are currently using Gravity Form User Registration Add-on, which indeed emails you your password. I checked our db and your password is NOT stored as plain text.

    in reply to: Typecast Conditions Value for Select Field #3178
    Steve
    Keymaster

    @hipsterbrown– Welcome to the Piklist Community!

    In theory, what you want to accomplish should be possible. Can you share more code? It would be best if you could zip it up and email to [email protected]

    in reply to: Issues with checkbox and "add_more" features #3174
    Steve
    Keymaster

    Great! Let us know if you need any more help.

    in reply to: Issues with checkbox and "add_more" features #3172
    Steve
    Keymaster

    @angelique– The good news about Piklist group/add-more fields is that they are extremely flexible and powerful, with unlimited configuration options. The bad news is that the arrays can get confusing. We are totally aware of that and will resolve this in an upcoming version of Piklist.

    For now, one of our Piklist Pros, @jasontheadams, wrote an awesome function you can use that makes things more managable. Try the parse_array function listed on his github page.

    The empty or undefined array keys are a bug and will also be resolved in the next version of Piklist.

    Also, I don’t think you need the group within a group, so I simplified your code:

    piklist('field', array(
      'type' => 'group'
      ,'field' => 'shop'
      ,'add_more' => true
      ,'label' => __('Purchase links') 
      ,'fields' => array(
        array(
          'type' => 'select'
          ,'field' => 'shop_id'
          ,'value' => 'amazon'
          ,'columns' => '12'
          ,'attributes' => array(
            'class' => 'text'
          )
          ,'choices' => array(
             'amazon' => 'Amazon'
            ,'kobo' => 'Kobo'
            ,'chapters'=> 'Chapters Indigo'  
          )
        )
        ,array(
          'type' => 'checkbox'
          ,'field' => 'format'
          ,'columns' => '12'
          ,'attributes' => array(
            'class' => 'text'
          )
          ,'choices' => array(
            'paper' => 'paper'
            ,'ebook' => 'ebook'
            ,'aubiobook' => 'audiobook'
          )
        )                 
        ,array(
          'type' => 'text'
          ,'field' => 'url'
          ,'label' => 'URL'
          ,'columns' => '12'  
          ,'attributes' => array( 
            'placeholder' => 'URL'
          ) 
        )
      )
    ));
    

    Let us know if this works for you.

    in reply to: Issues with checkbox and "add_more" features #3170
    Steve
    Keymaster

    @angelique– Welcome to the Piklist community!

    It looks like you have a group within a group… which I doubt you need. What is the field format you are looking for? What should be in the add-more?

    in reply to: Displaying piklist fields on a front page #3169
    Steve
    Keymaster

    @unleashed– Welcome to the Piklist Community!

    This feature is not available yet for the public version Piklist. If you want to test the beta version, email us at [email protected]

    in reply to: Filter Posts by custom field value #3166
    Steve
    Keymaster

    Piklist does not do this for you. This code allows you to filter by Taxonomy. You may be able to modify it for custom fields.

    in reply to: Get Options Automatically When Added in a Add More Field #3165
    Steve
    Keymaster

    @azizultex– The user will need to add the tabs… save the page… and then you can pull the data and display in the Category. You may want to use WorkFlow tabs to break this up, so the user is forced to save the page.

    in reply to: custom div in meta-box #3156
    Steve
    Keymaster

    @waterschaats– Welcome to the Piklist Community!

    There are two ways you can add HTML to a Meta-box:
    1) Just add it 😉 . We do this with the “Help” meta-box in the Piklist Demos.
    2) Use our HTML field: The HTML field is designed to wrap your code so the markup is similar to the other fields. Not sure if this will work for you since it adds extra markup.

    Let us know if either of these work for you.

    Only one hour and impressed… we’re so pleased!

    If you have time, please let the WordPress community know by giving Piklist a 5 Star review.

    in reply to: Featured image support not working #3154
    Steve
    Keymaster

    @azizultex– This is working for me. Try WP_debug to see if there are any errors.

    in reply to: Making a conditional field required #3150
    Steve
    Keymaster

    @dryan1144– Welcome to the Piklist community! You definitely found a bug with our conditions. We will look into it… not sure how difficult to fix.

    in reply to: Grouped Radio Data Persistence #3149
    Steve
    Keymaster

    @lycidiae– Welcome to the Piklist Community!

    Is there a reason you’re using a group field for this one field? Or is the “…” other fields in the group?

    Try removing scope from both fields, and let Piklist set it for you. See if that helps.

    in reply to: Conditional field logic not working #3146
    Steve
    Keymaster

    @ehoanshelt– Looks like a bug with conditions and mixed Scopes. We are looking into it.

    in reply to: Workflow Tabs, alert before leaving unsaved tag #3143
    Steve
    Keymaster

    @cyclissmo– We’re excited that you are delivering a Piklist-based site to your client. Good luck and let us know how we can help.

    Workflow Tab alerts will probably be available in a month or so. We’re finishing up some other amazing features.

Viewing 15 posts - 1,981 through 1,995 (of 2,964 total)