Title: mastermillo's Replies | WordPress.org

---

# mastermillo

  [  ](https://wordpress.org/support/users/mastermillo/)

 *   [Profile](https://wordpress.org/support/users/mastermillo/)
 *   [Topics Started](https://wordpress.org/support/users/mastermillo/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mastermillo/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mastermillo/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mastermillo/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mastermillo/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mastermillo/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/mastermillo/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mastermillo/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] get image into template](https://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template/#post-2281771)
 * dear cheefa,
    everything you can do is described above or look in / use the pasted
   code (link) above your comment. should be selfexplaining….
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [post date and custom post type](https://wordpress.org/support/topic/post-date-and-custom-post-type/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/post-date-and-custom-post-type/#post-2394550)
 * Thanks mate for the hint!
    Actually I did not use the `get_the_date` function,
   as in graphene theme rather they use `the_date or the_time` functions. I now 
   built a function with `echo get_the_date()` and it works for every post type.
 * thanks for your efforts again.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [post date and custom post type](https://wordpress.org/support/topic/post-date-and-custom-post-type/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/post-date-and-custom-post-type/#post-2394487)
 * Thanks for your reply!
    I use Graphene theme and I tried the standard twentyeleven.
   None of them displays the date of custom post types.
 * Further I made a function that displays the post date and added it to an action
   hook of graphene theme. Also only on normal posts the date is shown.
 * thanks for support
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] adding tags and custom field](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/#post-2307463)
 * off topic ??? I cannot follow. helpers.php should not be edited I guess.
    Anyway
   if it works what you want to do, but if you update the plugin your work might
   be gone….
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] adding tags and custom field](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/#post-2307458)
 * Hi jrWP,
    I’d like to try, even it is already for dummies like us 🙂
 * 1. build your own template by saving the **fm-summary-multi.php** with your individual
   name and choose it from the dropdown (data summary) in the ADVANCED TAB where
   you can edit the form you want, i.e. yourdomain.com/wp-admin/admin.php?page=fm-
   edit-form&sec=advanced&id=1. (that is a better way working with it) – I think
   you just took the wrong template, as fm-form-default.php just displays the form
   where you can enter your stuff!!!
 * 2. within the functions.php (to be found in your themes folder or child theme
   folder -> better make yourself a [ child theme](http://codex.wordpress.org/Child_Themes))
   you do not need to modify anything.
 * 3. what do you want to do actually? But I think with step 1 it should be solved…
   🙂
 * success, millo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] adding tags and custom field](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/#post-2307451)
 * thanks, got it working
    the used postID I can get like this within the template
   and my code looks like this:
 *     ```
       $my_custom_field_value_var = fm_summary_get_item_value('nickname');
       $my_get_lastID = wp_get_recent_posts('1');
       $my_thePostID = $my_get_lastID['0']['ID'];
       add_post_meta($my_thePostID, 'custom_field_name', $my_custom_field_value_var, true);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] adding tags and custom field](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/#post-2307448)
 * ok, adding this line in the FormManager template
 * `add_post_meta(901, 'custom_field_name', $custom_field_value, true);`
 * will create the custom field and put the right custom_field_value in that specific
   field.
    But only if the real postID is specified.
 * My question now, how can I retrieve the right postID from the form submission
   within the template?
    I tried several ways like the_ID() or get_post_ID() but
   all was not working yet. thanks for any idea, millo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] adding tags and custom field](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/#post-2307444)
 * ok I tried it within the template and functions.php neither works.
 * should not it be like that or did I get sometning wrong?
 *     ```
       function my_custom_field($postID) {
       global $_POST;
   
       add_post_meta($postID, 'my_field', 'TESTVALUE that I would like to be filled with a value of a specific nickname' , true);
       }
       add_action('fm_form_submission', 'my_custom_field');
       ```
   
 *  thanks millo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] Feature request – copy forms and choose category](https://wordpress.org/support/topic/plugin-wordpress-form-manager-feature-request-copy-forms-and-choose-category/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-feature-request-copy-forms-and-choose-category/#post-2321834)
 * Thanks!
    as for 1. I did not see and that helps a lot great.
 * as for 2. I will try and I would appreciate if you could include it, which would
   be much easier for everybody. sent you a donation for that 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] adding tags and custom field](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-tags-and-custom-field/#post-2307424)
 * some hint would be appreciated!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] get image into template](https://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template/#post-2281738)
 * [code pasted here](http://pastebin.com/FG2arV2J)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] Adding image to the post](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-image-to-the-post/)
 *  [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-adding-image-to-the-post/#post-2295676)
 * go to:
    [image to template](http://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template?replies=5)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] get image into template](https://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template/#post-2281735)
 * Here is the example how I use it:
    – use it before the “loop” will give you only
   the image – using it within the “loop” will generate the image and the link to
   the file Hope that helps you!
 * _[Code moderated as per the [Forum Rules](http://codex.wordpress.org/Forum_Welcome#Posting_Code).
   Please use the [pastebin](http://wordpress.pastebin.com/)]_
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Manager] [Plugin: WordPress Form Manager] get image into template](https://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template/)
 *  Thread Starter [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-wordpress-form-manager-get-image-into-template/#post-2281548)
 * Thank you! This works perfect.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot modify header information – upon upload](https://wordpress.org/support/topic/cannot-modify-header-information-upon-upload/)
 *  [mastermillo](https://wordpress.org/support/users/mastermillo/)
 * (@mastermillo)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/cannot-modify-header-information-upon-upload/#post-529833)
 * Hey there,
 * actually I had the same problem and I knew before that it had to do with permissions.
   I changed them, obviously… but no result.
    I erased the ‘uploads’ folder to let
   it be created again by WP .. no chance actually. The folder was created and still
   the uploads where not possible. Then I changed to another FTP program, I deleted
   the ‘upload’ folder and then created it again with the ftp and set the permissions
   again to 777.
 * Here we go… it’s working now. 😉
 * hope that will help

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/mastermillo/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mastermillo/replies/page/2/?output_format=md)