Forum Replies Created

Viewing 15 posts - 1,216 through 1,230 (of 2,964 total)
  • Author
    Posts
  • Steve
    Keymaster

    You code doesn’t look like it’s wrapped in a Piklist field array, so I update it. This code works for me.

    Your code should be saved to this field: ausbildung_zeugnis.

      piklist('field', array(
          'type' => 'group'
          ,'field' => 'ausbildung_zeugnis'
          ,'label' => __('Diplom/Zeugnis')
          ,'columns' => '12'
          ,'add_more' => true
          ,'fields' => array(
            array(
              'type' => 'text'
              ,'field' => 'ausbildung_zeugnis_bezeichnung'
              ,'label' => __('Bezeichnung')
              ,'columns' => '6'
              ,'help' => __('Wie heisst das Zeugnis? Entspricht normalerweise dem Dateinamen')
            ),
            array(
              'type' => 'file'
              ,'field' => 'ausbildung_zeugnis_pdf'
              ,'label' => __('PDF','piklist')
              ,'columns' => '3'
              ,'help' => __('Bitte laden Sie hier das Zeugnis als PDF-Datei hoch')
              ,'options' => array(
                'modal_title' => __('PDF hinzufügen','piklist')
                ,'button' => __('PDF hinzufügen','piklist')
              )
              ,'validate' => array(
                array(
                  'type' => 'limit',
                  'options' => array(
                    'min' => 1,
                    'max' => 1
                  )
                )
              )
            ),
            array(
              'type' => 'file'
              ,'field' => 'ausbildung_zeugnis_bild'
              ,'label' => __('Titelbild','piklist')
              ,'columns' => '3'
              ,'help' => __('Bitte laden Sie hier ein Titelbild der PDF-Datei hoch')
              ,'options' => array(
                'modal_title' => __('Bild hinzufügen','piklist')
                ,'button' => __('Bild hinzufügen','piklist')
              )
              ,'validate' => array(
                array(
                  'type' => 'limit',
                  'options' => array(
                    'min' => 1,
                    'max' => 1
                  )
                )
              )
            )
          )
      ));
    
    in reply to: Understanding Piklist Strenghts/Limitations in Theme Building #5246
    Steve
    Keymaster

    @dougsandlin– Piklist can definitely help you with your theme development. It’s a full framework for WordPress, not just a “field builder”. So while it can help you build fast, flexible settings pages it could also help you build:

    -Widgets
    -Shortcodes
    -Inline Help

    All with just a little code.

    In terms of customizing the header and front page, making sure it’s responsive, adding desired graphic capabilities, a slider, customizing image dimensions, etc, the advantage Piklist gives you is the ability to quickly create fields that drive these components.

    As you move forward with your project, feel free to post more questions. We’re happy to help.

    in reply to: Simple Checkbox (True or Value) #5245
    Steve
    Keymaster

    I just tested and was able to reproduce. If I remove the taxonomy scope then it seems to work for me. Can you verify?

    in reply to: Fields cannot be updated after saving post #5244
    Steve
    Keymaster

    Do the built-in Piklist Demos work?

    in reply to: W3 Cache Plugin and saving custom fields #5238
    Steve
    Keymaster

    That’s an issue with Total Cache.

    in reply to: W3 Cache Plugin and saving custom fields #5235
    Steve
    Keymaster

    @dami95– We are having a hard time reproducing. It looks like the best solution is turning off Object caching.

    Steve
    Keymaster

    Ok. It looks like you don’t have access to the WordPress $post object. Try this:

    global $post;
    
    $meta = get_post_custom($post->ID);
    
    
    in reply to: W3 Cache Plugin and saving custom fields #5225
    Steve
    Keymaster

    @justin– If you could help out it would be appreciated:

    We need a little help reproducing:

    1. Please export your W3 Total Cache settings and email to [email protected]
    2. Let us know which version of Piklist you are using.
    3. Let us know step-by-step instructions to reproduce.

    in reply to: hide submit box #5223
    Steve
    Keymaster

    @arranfraser– Welcome to the Piklist community!

    We’re in the process of redoing all our documentation, including hooks and filters.

    Glad you found what you needed! That’s why we built the demos.

    in reply to: W3 Cache Plugin and saving custom fields #5221
    Steve
    Keymaster

    @dami95– If you disable W3 Total Cache, those three Piklist file fields save?

    in reply to: Saving data – little bug? #5217
    Steve
    Keymaster

    Yes. The “custom fields” metabox causes a conflict. Essentially duplicating the field names.

    We will have this fixed in the next version of Piklist.

    If you’re not using it, you can remove it from your post type.

    in reply to: W3 Cache Plugin and saving custom fields #5214
    Steve
    Keymaster

    @dami95— This is not an issue with W3 Total Cache, it’s a bug with Piklist. Multiple file fields are having an issue. We’ll look into getting this fixed.

    in reply to: can't turn off "Show ALL Options" #5210
    Steve
    Keymaster

    @mcmaster– This works fine for me and it’s never been reported before. Do you have any caching going on in the admin?

    in reply to: Simple Checkbox (True or Value) #5204
    Steve
    Keymaster

    Just tested your theme and was able to reproduce. This is a bug that will be fixed in the next version of Piklist. You may want to change this to a select or radio.

    in reply to: Simple Checkbox (True or Value) #5201
    Steve
    Keymaster

    It saves for me. Feel free to zip up your plugin or theme and email to [email protected] Happy to take a look.

Viewing 15 posts - 1,216 through 1,230 (of 2,964 total)