Forum Replies Created

Viewing 15 posts - 1,366 through 1,380 (of 2,964 total)
  • Author
    Posts
  • in reply to: Can we use forms from frontend? #4849
    Steve
    Keymaster

    To edit an existing post you just need to pass the Post ID in the url, like this:

    http://yourdomain.com/page-with-form/?_post[ID]=1

    In your case: http://uniquesweb.co.in/piklist/sample-page/?_post[ID]=1

    in reply to: Can we use forms from frontend? #4847
    Steve
    Keymaster

    @hozefasmile– Is the form set to only show for logged in users? I can’t see it.

    in reply to: Create CPT on frontend #4845
    Steve
    Keymaster

    @hozefasmile– Awesome! Looking forward to hearing about it.

    Closing this ticket.

    in reply to: [0.9.9.4] Piklist stopped saving data #4840
    Steve
    Keymaster

    @txhorselady– I received your plugin via email. As soon as I activated it I noticed you have not changed over to the new Workflow system. Once you do that, the everything will work normally.

    in reply to: Create CPT on frontend #4836
    Steve
    Keymaster

    remember to delete the old Piklist plugin before installing the new.

    in reply to: Create CPT on frontend #4829
    Steve
    Keymaster

    Hozefa– Front-end forms are ready to go, and are included in Piklist. No other plugin is necessary. Just added some documentation here>

    Sample code for creating a Post from the front-end can be found in the built-in Demos>

    Let us know if you have any questions

    in reply to: Can we use forms from frontend? #4828
    Steve
    Keymaster

    Hozefa– Front-end forms are ready to go! Just added some documentation here>

    Let me know if you have any questions.

    in reply to: post relationships not preserved in upgrade #4827
    Steve
    Keymaster

    @mcmaster– Was this a Piklist issue? Your code? Divine intervention?

    Please confirm

    in reply to: Cannot output inline styles within editors #4826
    Steve
    Keymaster

    @shayneol– The description will be put back to it’s old position in the next version of Piklist. After review, we agree it should be there.

    in reply to: Grouping Fields – Noob Question #4809
    Steve
    Keymaster

    @conkid– Welcome to the Piklist community!

    When you use a group field, the data can be save in an array, OR as separate values. If you use a field name at the group level, like you did with asset_type, the data will be in an array. If you remove that, and just use field names for each field then it won’t.

    Try this updated code. It places two select fields side-by-side, 6 columns each (Piklist uses a 12 column grid).

    piklist('field', array(
      'type' => 'group'
      ,'label' => 'Select Asset Type'
      ,'help' => __('Select the type of Asset being logged...')
      ,'fields' => array(
        array(
          'type' => 'select'
          ,'field' => 'asset_type'
          ,'label' => 'Select Asset'
          ,'columns' => 6
          ,'choices' => array(
             'laptop' => 'Laptop'
            ,'docking_station' => 'Docking Station'
            ,'monitor' => 'Monitor'
            ,'headset' => 'Headset'
            ,'office_phone' => 'Office Phone'
            ,'cell_phone' => 'Cell Phone'
            ,'software' => 'Software'
            ,'monitor' => 'Monitor'
            ,'desktop' => 'Desktop'
            ,'monitor' => 'Monitor'
            ,'ram' => 'Ram'
            ,'hard_drive' => 'Hard Drive'
            ,'battery' => 'Battery'
            ,'laptop_charger' => 'Laptop Charger'
          )
        )
        ,array(
          'type' => 'select'
          ,'field' => 'manufacturer'
          ,'label' => 'Select Manufacturer'
          ,'columns' => 6
          ,'help' => __('Select the manufacturer of Asset being logged...')
          ,'choices' => array(
            'hp' => 'HP'
            ,'lenovo' => 'Lenovo'
            ,'monitor' => 'Monitor'
            ,'headset' => 'Headset'
            ,'office_phone' => 'Office Phone'
            ,'cell_phone' => 'Cell Phone'
            ,'software' => 'Software'
            ,'monitor' => 'Monitor'
            ,'desktop' => 'Desktop'
            ,'monitor' => 'Monitor'
            ,'ram' => 'Ram'
            ,'hard_drive' => 'Hard Drive'
            ,'battery' => 'Battery'
            ,'laptop_charger' => 'Laptop Charger'
          )
        )
      )
    ));
    

    Let me know if this is what you’re looking for.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Creating conditional field for something not equal to 'none' #4799
    Steve
    Keymaster

    @rachel– Closing this ticket since we resolved via email.

    in reply to: [0.9.9.4] Piklist stopped saving data #4789
    Steve
    Keymaster

    @ndbe– You’re the only one who has reported this issue. Can you email your plugin to [email protected]

    Steve
    Keymaster

    @kplaneta– Good suggestion. It’s been added. Closing ticket.

    in reply to: Error on admin post pages [WP-Helpers 1.8.8] #4784
    Steve
    Keymaster

    Here’s what I did:
    1) Install Soil
    2) Add to functions.php:
    add_theme_support(‘soil-clean-up’);
    add_theme_support(‘soil-disable-trackbacks’);
    3) In Helpers, I clicked on the “Appearance” tab and checked off everything from “Remove from template header”.

    I received no errors. Please let me know if I’m doing this correctly.

    Steve
    Keymaster
Viewing 15 posts - 1,366 through 1,380 (of 2,964 total)