Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@hozefasmile– A /piklist/ folder inside themes is currently not working correctly in the current version of Piklist. If you make a plugin it will work fine.
We are putting the finishing touches on the next version of Piklist which will support themes and child themes.
SteveKeymaster@poxtron– Piklist doesn’t support fields for NEW Terms anymore. We had this in, but due to the limited space on this page we pulled out the feature because fields looked broken. We plan on putting it back in, in the future.
SteveKeymasterYou may need to go old school to get this done. Remember, Piklist does everything the WordPress way, so standard WP hooks, filters and functions work just fine. This Codex page may help >
SteveKeymasterI’m still not clear. Happy to chat on Skype if you like. Email me at [email protected] to schedule a time.
SteveKeymaster@giec– Sorry, but I’m still a bit confused. What is creating the meta-box, “My Metabox”? Is this created by the select field?
SteveKeymaster@ndmurph04– I sent you an email with instructions and latest beta. Thanks for contributing to Piklist!
SteveKeymasterClosing ticket.
SteveKeymaster@cseifert– Welcome to the Piklist Community!
The current version of Piklist at WordPress.org doesn’t use shortcodes so you are fine to upgrade.
SteveKeymasterThe image link is broken. Please repost.
SteveKeymasterThis code will add a repeatable textarea where the user can add code. Then pull this field, and loop through it to display:
piklist('field', array( 'type' => 'textarea' ,'field' => 'my_divs' ,'label' => __('Add your code') ,'add_more' => true )There is no need for an “Add” button.
SteveKeymaster@bicho44– Glad you love the feature, and we appreciate the feedback. If we can think of a way to handle this well, then we might do it. So, people want the ID first… some want it last. It gets a little crazy. 😉
SteveKeymasterDo you want these divs to appear on the front end or in the admin area?
SteveKeymasterYour code for
custom-div-div_one.phpis incorrect. You can’t wrap a div within php tags. just change it to this:<div class="infoBox one"></div>
SteveKeymasterThe
numberfields is an HTML5 field, not a Piklist field. Piklist just makes it easy for you to implement. It looks like you need to set theminattribute as well:piklist ( 'field', array( 'type' => 'number', 'scope' => 'post_meta', 'field' => 'precio_barco', 'label' => __('Precio', 'imgd'), 'value' => '', 'attributes' => array( 'class' => 'text', 'step' => '0.01', 'min' => '0.00' ) ) ); -
AuthorPosts