Forum Replies Created
-
AuthorPosts
-
December 11, 2014 at 2:21 pm in reply to: Nested groups with add_more, ajax select, add_more template #3060
SteveKeymaster@egamipeaks– Awesome! Please post the final code when you are finished. We would love to see it.
SteveKeymasterLooks like we have a bug with conditions inside two groups. This one may take a while to fix.
SteveKeymasterThere’s two ways to change the widget name:
1) Rename your theme.
2) Place the widgets in an add-on (like we do with Piklist Demos).
SteveKeymasterIs your widget in your theme? I think it’s the one called “TwentyTwelve Child Theme Widgets”
SteveKeymasterThere seems to be a bug with this type of field config and the BASIC uploader. If you remove the ‘basic’ it should work:
,'options' => array( 'basic' => true )
SteveKeymasterI think this should work:
!empty($productClaims[0])
SteveKeymaster@azizultex– Piklist rolls up all Widgets built within a plugin or theme into ONE widget. For example, if activate Piklist Demos, you will see ONE Widget called “Piklist Demo Widgets”. Once you drag it into the widget area you will see it contains multiple widgets.
Let me know if you can’t find it.
SteveKeymaster@azizultex– this feature is on our list of todos. Glad Piklist made your dreams come true!
If you have the time, please let the world know how much you love Piklist and leave a review on WordPress.org.
SteveKeymasterJust pushed v.0.9.4.24 to WordPress.org. This upgrade should fix your image issues.
Clicking on the image should bring you back to the upgrade screen.
SteveKeymaster@cosmocanuck– I need to see the output of $productClaims.
Please run this code and paste the output here:
$productClaims = get_post_meta($post->ID, 'claims', false); piklist::pre($productClaims);
SteveKeymaster@dawood– Don’t be confused. We updated the tutorial to
$post->ID. As long as you can get the post ID, you’re find.December 10, 2014 at 10:29 pm in reply to: No paragraphs or line breaks displaying from my editor field #3036
SteveKeymaster@cosmocanuck– WordPress does all the work when you use
the_content(). On custom Editors you need to do the work. I updated the bottom of the Editor docs with the info you need.
SteveKeymaster@dawood– This line of code should be BEFORE the foreach, not in it, since it grabs the data that the foreach loops through.
$image_ids = get_post_meta($post_id, 'my_image');Let me know if that works for you.
SteveKeymaster@azizultex– You can limit the amount of images uploaded by using the limit validation rule:
'validate' => array( array( 'type' => 'limit' ,'options' => array( 'min' => 1 ,'max' => 1 ) ) )Piklist Validation rules are server-side for security reasons. So the user can try to upload multiple images, but once they press save, Piklist will show them an error message. You should probably let users know to only upload one image in your field description.
Let us know if this works for you.
-
AuthorPosts