Forum Replies Created

Viewing 15 posts - 2,161 through 2,175 (of 2,964 total)
  • Author
    Posts
  • in reply to: HTML5 input type support #2684
    Steve
    Keymaster

    @wturrell– We’ll get this done early next week.

    Steve
    Keymaster

    @ajayphp– Do you mean you want to create a page similiar to the Piklist “About” page in the wp-admin?

    in reply to: plugin activate error #2682
    Steve
    Keymaster

    @ajayphp– Is this two separate issues?
    1) You created a plugin and it gave you an error?
    –Please create a separate ticket for this and post the code for your plugin. What error did you receive?
    2) You activated wp-helpers and checked off xml-rpc and you got another error?
    –I can’t reproduce. What other options do you have checked?

    in reply to: How to add textarea into CPT list view #2680
    Steve
    Keymaster

    @kristjan07– I don’t think this is possible. What WordPress action do you want to hook to on the list page?

    in reply to: how to access to toolbox beta #2679
    Steve
    Keymaster

    @ajayphp– We send license keys out in groups. Check your inbox.

    in reply to: do not want the post new item created as Auto-draft #2678
    Steve
    Keymaster

    @ajayphp– Please paste the code you used to register your post type. Piklist enhances the standard WordPress register_post_type function, it does not replace it.

    in reply to: piklist add on demo not saving data #2677
    Steve
    Keymaster

    @ajayphp– Do you see the content saved in the admin? Instead of preview do you see the content when you view it on front end?

    Steve
    Keymaster

    @ajayphpTry this tutorial. But instead of using the editor field, use textarea.

    in reply to: Add relationships for custom post types #2667
    Steve
    Keymaster

    @sajonara– Piklist has a post-to-post relationship field. But this is a great solution as well. Thanks for sharing!

    in reply to: Custom save/load #2664
    Steve
    Keymaster

    Closing this ticket since we are working on the issue here >

    in reply to: Conditions in add more groups #2662
    Steve
    Keymaster

    @atana– It was really tough to debug your code so I just wrote it from scratch. I also attached a screenshot so you can see what it should look like. Let me know if this works for you.

      piklist('field', array(
        'type' => 'group'
        ,'field' => 'atanas_settings'
        ,'label' => __('Settings')
        ,'add_more' => true
        ,'fields' => array(
          array(
            'type' => 'select'
            ,'field' => 'country'
            ,'label' => 'Country'
            ,'columns' => 12
            ,'choices' => array(
                'US' => 'United States'
                ,'EU' => 'European Union'
              )
            )
            ,array(
              'type' => 'select'
              ,'field' => 'fruits'
              ,'label' => 'Fruits'
              ,'columns' => 12
              ,'choices' => array(
                'apples' => 'Apples'
                ,'oranges' => 'Oranges'
              )
            )
            ,array(
              'type' => 'select'
              ,'field' => 'apples'
              ,'label' => 'Apples'
              ,'columns' => 12
              ,'choices' => array(
                'aceymac' => 'Aceymac Apple'
                ,'akero' => 'Akero Apple'
              )
              ,'conditions' => array(
                array(
                  'field' => 'atanas_settings:fruits'
                  ,'value' => 'apples'
                )
              )
            )
            ,array(
              'type' => 'select'
              ,'field' => 'oranges'
              ,'label' => 'Oranges'
              ,'columns' => 12
              ,'choices' => array(
                'blood' => 'Blood Orange'
                ,'navel' => 'Navel Orange'
              )
              ,'conditions' => array(
                array(
                  'field' => 'atanas_settings:fruits'
                  ,'value' => 'oranges'
                )
              )
            )
        )
      ));
    
    
      piklist('field', array(
        'type' => 'select'
        ,'field' => 'shipping'
        ,'label' => 'Shipping'
        ,'choices' => array(
          'ground' => 'Ground'
          ,'ups' => 'UPS'
        )
      ));
    
    Attachments:
    You must be logged in to view attached files.
    in reply to: Custom save/load #2659
    Steve
    Keymaster

    @atanas– The original issue was “Custom save/load”. Is this still an issue? Is the code you posted related to this issue?

    in reply to: Conditions in add more groups #2658
    Steve
    Keymaster

    @atanas– Your code is throwing some warnings for me so it’s tough to debug.

    What exactly do you want to happen? Which fields should be within the add_more?

    in reply to: Add more and javascript #2650
    Steve
    Keymaster

    @wpkonsulterna– If you remove fabric.js do you still see the issue?

    in reply to: Custom save/load #2649
    Steve
    Keymaster

    @atanas– Piklist uses core WordPress functions, and saving post meta is usually one value per record. If you want to save a group of field data in one array, use the Piklist group field. You can see a sample of this in the built-in Demos:
    Add New Demo > Groups tab > Address (Grouped).

    Let me know if that helps.

Viewing 15 posts - 2,161 through 2,175 (of 2,964 total)