Title: luminopolis's Replies | WordPress.org

---

# luminopolis

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

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

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove Post Thumbnail from the Gallery Shortcode](https://wordpress.org/support/topic/remove-post-thumbnail-from-the-gallery-shortcode/)
 *  [luminopolis](https://wordpress.org/support/users/luminopolis/)
 * (@luminopolis)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/remove-post-thumbnail-from-the-gallery-shortcode/#post-1539343)
 * You’re a lifesaver Cátia.
 * For anyone using get_posts or similar to manually loop through attachments, her
   solution still works. For example:
 *     ```
       <?php
       	$thumb_id = get_post_thumbnail_id(get_the_ID()); // gets the post thumbnail ID
   
       	$args = array(
       		'order' => 'ASC',
       		'orderby' => 'menu_order',
       		'post_type' => 'attachment',
       		'post_parent' => $post->ID,
       		'post_mime_type' => 'image',
       		'post_status' => null,
       		'numberposts' => -1,
       		'exclude' => $thumb_id
       	);
   
       	$attachments = get_posts($args);
       	if ($attachments) {
       		foreach ($attachments as $attachment) {
       			echo wp_get_attachment_image($attachment->ID, 'medium', false);
       		}
       	}
       ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Suggested improvement to gallery_shortcode](https://wordpress.org/support/topic/suggested-improvement-to-gallery_shortcode/)
 *  [luminopolis](https://wordpress.org/support/users/luminopolis/)
 * (@luminopolis)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/suggested-improvement-to-gallery_shortcode/#post-1260486)
 * hutorny –
 * THANK YOU THANK YOU THANK YOU THANK YOU
 * this works perfect. it was very useful when hardwiring the rel=”shadowbox” attr
   in to automatic gallery insertion (via do_shortcode())
 * THANK YOU!!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Pods CMS] Best plugin for wordpress ever. period](https://wordpress.org/support/topic/plugin-pods-cms-best-plugin-for-wordpress-ever-period/)
 *  [luminopolis](https://wordpress.org/support/users/luminopolis/)
 * (@luminopolis)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/plugin-pods-cms-best-plugin-for-wordpress-ever-period/#post-1228180)
 * also – magic fields is superior for most applications involving post field customization,
   even if it’s mostly aesthetic in its approach. it does what one would expect 
   pods to do, in a much simpler fashion.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Pods CMS] Best plugin for wordpress ever. period](https://wordpress.org/support/topic/plugin-pods-cms-best-plugin-for-wordpress-ever-period/)
 *  [luminopolis](https://wordpress.org/support/users/luminopolis/)
 * (@luminopolis)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/plugin-pods-cms-best-plugin-for-wordpress-ever-period/#post-1228179)
 * Agreed 100% with olivernielsen – this plugin has tons of issues to work out before
   it can be considered usable. Nevermind whether or not someone bothered to ask
   for help in the forms – there’s a lot wrong with Pods including a very basic 
   syntax error in pods/uninstall.php that makes it impossible to uninstall the 
   standard wordpress way. Tons of database problems too – some potentially injectable
   and some just dirty.
 * Neat idea, looking forward to its evolution. Not a good option just yet.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Contact Form 7] custom fields do not send submitted data](https://wordpress.org/support/topic/plugin-contact-form-7-custom-fields-do-not-send-submitted-data/)
 *  Thread Starter [luminopolis](https://wordpress.org/support/users/luminopolis/)
 * (@luminopolis)
 * [17 years ago](https://wordpress.org/support/topic/plugin-contact-form-7-custom-fields-do-not-send-submitted-data/#post-1024458)
 * thanks porscheguy!!! solved!
 * works beautifully now. i didn’t realize that the form area design would not automatically
   load in to the message body. like jbryant1027, i was thrown off by the ‘copy 
   this into form left.’ also when i tried to tinker around with the message body
   at first, i’d dump the entire contents of the custom tags in – rather than cutting
   out all but the identifier. So it’d just send me the text i put in “message body”
   rather than what users submitted. but doing what you said works great, and for
   anyone else with this issue, your “Message Body” should look something like this(
   plus whatever formatting / text you want to add):
 * [your-name]
    [your-email] [text-107] [radio-505] [menu-965] [textarea-245] [text-
   880]

Viewing 5 replies - 1 through 5 (of 5 total)