- This topic has 9 replies, 2 voices, and was last updated 7 years, 5 months ago by
Steve.
-
AuthorPosts
-
-
August 19, 2014 at 9:30 am #2262
ianmuscatMemberHi,
I have two WP installations running two different versions of Piklist (v0.9.4.9 and v0.9.4.11), the older version is working fine for me, however, the newer (current) version of Piklist is not showing the editor box in Addmore fields, when I click the ‘+’ button to add another item – Therefore, the first item shows an editor just fine, as soon as I click the ‘+’ button to add another field, the second field shows up without an editor.
Kindly Advise.
Regards,
Ian -
August 19, 2014 at 9:34 am #2263
ianmuscatMemberUPDATE – I noticed that saving the post will cause the field to appear after the post has been saved.
I am trying this in a metabox of a custom post type.
Regards,
Ian -
August 19, 2014 at 9:34 am #2264
ianmuscatMemberUPDATE – I noticed that saving the post will cause the field to appear after the post has been saved.
I am trying this in a metabox of a custom post type.
Regards,
Ian -
August 19, 2014 at 4:51 pm #2268
SteveKeymaster@ianmuscat– This is odd. 0.9.4.10 was a css update, and 0.9.4.11 was a broken link on the About page. Can you upload your metabox code? Use the Attachments area below.
-
August 19, 2014 at 4:51 pm #2269
SteveKeymaster@ianmuscat– This is odd. 0.9.4.10 was a css update, and 0.9.4.11 was a broken link on the About page. Can you upload your metabox code? Use the Attachments area below.
-
August 20, 2014 at 2:50 pm #2280
ianmuscatMember@steve – Apologies for the late reply. Here is the code I’m using for my Metabox.
Regards,
Ian -
August 20, 2014 at 2:52 pm #2281
ianmuscatMemberHmmm.. It seems like I am not being allowed to upload the file (I tried both .php and .txt). Here is the code I’m using…
<?php /* Title: Tests Description: Add or remove tests Post Type: test Order: 1 Lock: true Collapse: true */ /* * Get Test Settings */ $test_options = get_option('setting_test'); /* * Get Default Test Settings */ $test_default_test_content = $test_options['default_test_item_content']; /* * Test Item */ piklist('field', array( 'type' => 'group' ,'field' => 'test_item' ,'add_more' => true ,'fields' => array( /* * test Name */ array( 'type' => 'text' ,'field' => 'test_name' ,'label' => __('Test Title','piklist') ,'description' => __('Enter a title for this test.','piklist') ,'help' => __('Enter a title for this test.','piklist') ,'attributes' => array( 'class' => 'large-text' ,'placeholder' => __('Enter title here','piklist') ) ,'on_post_status' => array( 'value' => 'lock' ) ,'sanitize' => array( array( 'type' => 'title' ,'context' => 'save' ) ) ) /* * Test Content */ ,array( 'type' => 'editor' ,'field' => 'test_content' ,'label' => __('Test Content','piklist') ,'description' => __('Enter content for this test.','piklist') ,'help' => __('Enter content for this test','piklist') ,'value' => $test_default_test_content ,'options' => array ( 'wpautop' => false ,'media_buttons' => true ,'tinymce' => true ,'quicktags' => true ) ) /* * Test Background Color */ ,array( 'type' => 'colorpicker' ,'field' => 'test_background_color' ,'label' => __('Test Background Color','piklist') ,'description' => __('Select a background color for this test','piklist') ,'help' => __('Select a background color for this test','piklist') ,'attributes' => array( 'class' => 'text' ) ) ) )); -
August 21, 2014 at 11:16 am #2286
SteveKeymaster@ianmuscat– I can’t reproduce. Working fine for me. Please do a full refresh and empty all caches… or try another browser.
-
August 21, 2014 at 11:32 am #2288
ianmuscatMemberIt did not occur to me initially, however, it seems like another plugin is causing this issue – I’ll need to look into what’s causing this.
Thanks for your help.
Regards,
Ian -
September 9, 2014 at 11:38 am #2408
SteveKeymasterNice to know it wasn’t Piklist. 😉 Let us know if we can help further.
-
-
AuthorPosts
- The topic ‘Piklist Update Breaks 'Editor' Field in Add More’ is closed to new replies.