Viewing 12 reply threads
  • Author
    Posts
    • #1161
      aks137
      Member

      Hi,

      I’m new with Piklist. How can I make use of Piklist Demos?

      Please help.

      I want to create a Custom Post Type and name it as “Clients”. However, I’m successful to do so, but I’m not able to add titles to my “Clients”.

      Waiting for your response.

      Thanks,
      Aakash

    • #1162
      Steve
      Keymaster

      Piklist Demos is a great way to see how many of our features work. Once you find something you like, you can copy/paste the code into your own project.

      What do you mean you can’t add titles?

    • #1163
      aks137
      Member

      I mean to say that I want to add titles to my Clients with client’s photos but not able to do so.

      How do I go about it??

      Cheers,
      Aakash

    • #1164
      aks137
      Member

      Piklist

      As you can see in the above image there is “no title” for the client, I would like to add a title for my client.

      Cheers,
      Aakash

    • #1165
      Steve
      Keymaster

      When you registered the Post Type, did you add the “supports” parameter, with “title” set?

    • #1166
      aks137
      Member

      This is my code:

      add_filter(‘piklist_post_types’, ‘demo_post_type’);
      function demo_post_type($post_types)
      {
      $post_types[‘clients’] = array(
      ‘labels’ => piklist(‘post_type_labels’, ‘Clients’)
      ,’title’ => __(‘Enter Client Name’)
      ,’public’ => true
      ,’rewrite’ => array(
      )

    • #1171
      Steve
      Keymaster

      Try registering with the standard WordPress function register_post_type. Let us know if that helps.

    • #1181
      aks137
      Member

      Ok I’ll try to do so. Also can we add some calculative fields like say “FIELD_a=1” “FIELD_b=2” so “FIELD_c”=”FIELD_a”+”FIELD_b”, i.e., “FIELD_c=3”.

      I want to add these values when we lost-focus from FIELD_a and FIELD_b to FIELD_c.

      It is possible to do so?

      Thanks in advance.

    • #1189
      aks137
      Member

      Hi,

      I installed the new Beta version of Piklist and was successful to add thumbnails.

      I noticed, there is an extra META BOX appearing in the post type titled “piklist_meta_title_select” I’ve attached the picture of my post as well.

      Why is this happening? Please help

    • #1190
      Steve
      Keymaster

      It looks like you have a file in your meta-boxes directory that has no “TITLE“.

      Delete it or add a title to fix.

    • #1191
      aks137
      Member

      Thank you,

      It solved my problem, also “register_post_type” helped me with my previous problem. Thanks a lot.

      I still don’t know whether we can add some fields/text boxes that can hold calculative values?

    • #1193
      Steve
      Keymaster

      Glad that worked. Calculative values are not supported, but on our future feature list.

    • #1195
      aks137
      Member

      Thanks for your prompt reply.

      Will be waiting for future feature updates.

      Cheers,
      Aakash

Viewing 12 reply threads
  • You must be logged in to reply to this topic.