Forum Replies Created
-
AuthorPosts
-
December 7, 2015 at 12:17 pm in reply to: More than one file upload field in add_more group fails to save #5247
SteveKeymasterYou 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 ) ) ) ) ) ));December 7, 2015 at 12:14 pm in reply to: Understanding Piklist Strenghts/Limitations in Theme Building #5246
SteveKeymaster@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 HelpAll 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.
SteveKeymasterI just tested and was able to reproduce. If I remove the taxonomy scope then it seems to work for me. Can you verify?
SteveKeymasterDo the built-in Piklist Demos work?
SteveKeymasterThat’s an issue with Total Cache.
SteveKeymaster@dami95– We are having a hard time reproducing. It looks like the best solution is turning off Object caching.
December 5, 2015 at 7:15 am in reply to: How to display add more field in oder detail page of woocommerce #5234
SteveKeymasterOk. It looks like you don’t have access to the WordPress $post object. Try this:
global $post; $meta = get_post_custom($post->ID);
SteveKeymaster@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.
SteveKeymaster@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.
SteveKeymasterYes. 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.
SteveKeymaster@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.
SteveKeymaster@mcmaster– This works fine for me and it’s never been reported before. Do you have any caching going on in the admin?
SteveKeymasterJust 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.
SteveKeymasterIt saves for me. Feel free to zip up your plugin or theme and email to [email protected] Happy to take a look.
-
AuthorPosts