Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@jmayhak– Your code is working beautifully for me. I see all fields, and the image/video condition works great.
Try clearing your cache… or use another browser.
SteveKeymaster@danieldalonzo– In your inbox.
SteveKeymasterWe will have this fixed in our beta version this week. Will email to you when it’s ready.
SteveKeymaster@hipsterbrown– It looks like Piklist doesn’t like widgets that have no settings. We’ll look into this.
SteveKeymaster@hipsterbrown– Can you post the widget code here, or email to [email protected] ?
SteveKeymasterYou can’t set the scope to empty. Remove the entire parameter and let Piklist set it.
SteveKeymasterWith Piklist you can use standard WordPress and PHP functions to manipulate data:
$date = get_post_meta( $post->ID, 'date', true); $new_date = date("Y-m-d", strtotime($date)); echo $new_date;Let me know if that works for you.
SteveKeymaster@waterschaats — Please reference the examples at the bottom of this doc >
Let me know if that helps.
SteveKeymaster@andy– Please email us at [email protected] and we’ll get it to you.
SteveKeymaster@jan– It looks like you left off a parameter when you registered the taxonomy. Try adding:
,'rewrite' => array( 'slug' => 'products' )
Look in piklist/add-ons/piklist-demos/piklist-demos.php for an example of how we registered the
piklist_demo_typetaxonomy.
SteveKeymaster@leminhthienloc– Welcome to the Piklist Community!
Piklist used to allow custom fields when creating a new term, but we removed it a while ago. The WordPress UI is just not designed for it, and there were too many issues. Fields can only be added to terms that are already created.
We plan on bringing this feature back one day… when we can make it awesome.
SteveKeymasterGlad it worked for you! One of the best parts of Piklist is that, in most cases, you can use standard WordPress functions to work with your data.
SteveKeymasterWelcome to the Piklist Community!
I think you want to use wp_get_object_terms()
The example on the codex page looks like it will do what you want.
Let us know if this works for you.
SteveKeymaster@ehoanshelt– Try defining the scope in the condition:
,'conditions' => array( array( 'field' => 'type' ,'value' => '81' ,'scope' => 'taxonomy' ) ) -
AuthorPosts