Forum Replies Created

Viewing 15 posts - 2,101 through 2,115 (of 2,964 total)
  • Author
    Posts
  • in reply to: how to get wp admin style list table in front end #2844
    Steve
    Keymaster

    @ajayphp– Currently, Piklist does not support front-end CRUD.

    in reply to: Sidebar Taxonomy not working when Workflow is active #2843
    Steve
    Keymaster

    @ehoanshelt– Workflow tabs control the layout of the entire page, including the sidebar. In the include_meta_boxes() function you would list each Div ID you want to show. For this custom taxonomy, WordPress assigned the Div ID “stepsdiv”, so you would us this code in your Workflow file:

    piklist('include_meta_boxes', array(
    	'piklist_meta_client_info'
    	,'piklist_meta_wordpress'
    	,'stepsdiv'
    ));
    

    Let us know if you need any more help.

    in reply to: post status default on save #2839
    Steve
    Keymaster

    @ajayphp– Great idea! We’ll add it to our list.

    in reply to: post custom status not visible in quick edit mode #2838
    Steve
    Keymaster

    @ajayphp– Currently custom post statuses only show on the Add New/Edit screens.

    in reply to: Repeater with a conditional inside #2835
    Steve
    Keymaster

    @jcrist– That code should work fine, I also added it to the Conditions doc. Thanks for letting us know about site search, it’s been fixed. Let us know if you need any more help.

    in reply to: Mass editing existing values #2831
    Steve
    Keymaster

    @stevo81989– It would help if you could post some code here, or zip up the files and email to [email protected] this domain. Happy to help you with this.

    in reply to: Switching framework #2829
    Steve
    Keymaster

    @zoker– We really try to stay within the WordPress UI styles, that’s why the Piklist fields look so great. Subgroups are not part of that so we probably won’t support out of the box.

    As for Image Radio buttons you can create this yourself with a little CSS. Here’s some code to get you started.

    1) Add the images as the choices in the Radio field:

      piklist('field', array(
        'type' => 'radio'
        ,'field' => 'my_radio_image'
        ,'label' => 'Choose a Style'
        ,'list' => false
        ,'attributes' => array(
          'class' => 'text radio_images'
          ,'style' => 'display: none;'
        )
        ,'choices' => array(
          'choice1' => '<img width="130px" src="http://path-to-images/image1.png" />'
          ,'choice2' => '<img width="130px" src="http://path-to-images/image2.png" />'
          ,'choice3' => '<img width="130px" src="http//path-to-images/image3.png" />'
        )
      ));

    2) Add some CSS to help. You can use inline CSS if you want directly in the same file as the field is in. Something like this should get you started:

    <style type="text/css">
    
      li .radio_images{
        float: left;
        width: 140px;
        margin-right: 10px;
      }
    
      .radio_images span img {
          padding: 5px;
      }
    
      .radio_images span img:hover {
          border: 5px solid #ccc;
          padding: 0;
      }
    
      input.radio_images[type="radio"]:checked + span img {
          border: 5px solid #ccc;
          padding: 0;
        }
    
    </style>

    Let me know if that works for you.

    in reply to: Switching framework #2825
    Steve
    Keymaster

    @zoker– If all you want to do is add one metabox to a pages, then Piklist is probably a little much. However, just a warning… once you start using Piklist to add a metabox, you will probably use it to add lots of things. It can be addictive. 😉

    in reply to: custom id for field attribute #2823
    Steve
    Keymaster

    It’s on our list of todo’s. Closing ticket…

    in reply to: custom textarea field with piklist field #2822
    Steve
    Keymaster
    in reply to: custom id for field attribute #2819
    Steve
    Keymaster

    @ajayphp– You can’t control the ID, but you can use custom classes, and jQuery can target classes. Or use data-attributes.

    in reply to: admin pages layout like meta box #2818
    Steve
    Keymaster

    @ajayphp– Piklist doesn’t have this, but since Piklist does everything the WordPress way… you can always write this yourself.

    in reply to: using ajax #2817
    Steve
    Keymaster

    @ajayphp– This is not ready yet, but something we will address in the future.

    in reply to: meta fields as All post listing column #2814
    Steve
    Keymaster

    @ajayphp– Since Piklist does everything the WordPress way… you don’t have to do everything with Piklist. Here’s a good tutorial for adding sortable columns to WordPress, without using Piklist.

    in reply to: submenu for custom post type #2813
    Steve
    Keymaster

    @ajayphp– The Piklist Demo’s does this with a Settings page… it’s pretty much the same with an Admin page. Use the sub_menu parameter:

    'sub_menu' => 'edit.php?post_type=YOUR_POST_TYPE'
    
Viewing 15 posts - 2,101 through 2,115 (of 2,964 total)