Title: mfuchs's Replies | WordPress.org

---

# mfuchs

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [Plugin: Events Manager] Display Placeholders content in Template](https://wordpress.org/support/topic/plugin-events-manager-display-placeholders-content-in-template/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-events-manager-display-placeholders-content-in-template/#post-3032070)
 * Thanks so much, that worked. I added
 *     ```
       <?php
       global $post;
       $EM_Event = em_get_event($post->ID, 'post_id');
       ?>
       ```
   
 * to the template and then
 * `<?php echo $EM_Event->output('#_EVENTDATES'); ?>`
 * to output the Event Date.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YOURLS: WordPress to Twitter] [Plugin: YOURLS: WordPress to Twitter] Stop nagging about Twitter settings please.](https://wordpress.org/support/topic/plugin-yourls-wordpress-to-twitter-stop-nagging-about-twitter-settings-please/)
 *  [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-yourls-wordpress-to-twitter-stop-nagging-about-twitter-settings-please/#post-1658374)
 * Maybe this helps, it’s a modified version of the plugin.
    [http://ottopress.com/2011/modified-yourls-plugin/](http://ottopress.com/2011/modified-yourls-plugin/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YOURLS: WordPress to Twitter] [Plugin: YOURLS: WordPress to Twitter] A most common feature request](https://wordpress.org/support/topic/plugin-yourls-wordpress-to-twitter-a-most-common-feature-request/)
 *  [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-yourls-wordpress-to-twitter-a-most-common-feature-request/#post-1965669)
 * You can do that with an additional plugin.
    [http://www.viper007bond.com/wordpress-plugins/yourls-shorturl-widget/](http://www.viper007bond.com/wordpress-plugins/yourls-shorturl-widget/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Video embed code disappearing](https://wordpress.org/support/topic/video-embed-code-disappearing/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/video-embed-code-disappearing/#post-2008267)
 * oEmbed works but with oEmbed I can’t customize the output such as video size 
   or overlay colors… 🙁
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing classes and surrounding Paragraph tag from image attachment DIV](https://wordpress.org/support/topic/changing-classes-and-surrounding-paragraph-tag-from-image-attachment-div/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/changing-classes-and-surrounding-paragraph-tag-from-image-attachment-div/#post-2000622)
 * This did indeed help. I was able to change the div and remove the paragraph tag
   by adding the below code to functions.php.
 *     ```
       /*
        * Change default image caption output
        */
       add_shortcode('wp_caption', 'fixed_img_caption_shortcode');
       add_shortcode('caption', 'fixed_img_caption_shortcode');
       function fixed_img_caption_shortcode($attr, $content = null) {
       	// Allow plugins/themes to override the default caption template.
       	$output = apply_filters('img_caption_shortcode', '', $attr, $content);
       	if ( $output != '' ) return $output;
       	extract(shortcode_atts(array(
       		'id'=> '',
       		'align'	=> 'alignnone',
       		'width'	=> '',
       		'caption' => ''), $attr));
       	if ( 1 > (int) $width || empty($caption) )
       	return $content;
       	if ( $id ) $id = 'id="' . esc_attr($id) . '" ';
       	return '<div ' . 'class="pic-caption ' . esc_attr($align)
       	. '">'
       	. do_shortcode( $content )
       	. $caption . '</div>';
       }
       ```
   
 * I wasn’t able to get rid of the class assigned to the IMG. Any idea how I could
   do that?
 * Thanks so much,
    Martin
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Getting the link to the first menu item](https://wordpress.org/support/topic/getting-the-link-to-the-first-menu-item/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/getting-the-link-to-the-first-menu-item/#post-1840807)
 * Does anybody maybe know how to do this?
 * Thanks a lot,
 * Martin
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Getting the link to the first menu item](https://wordpress.org/support/topic/getting-the-link-to-the-first-menu-item/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/getting-the-link-to-the-first-menu-item/#post-1840495)
 * Thanks Emil but that’s not what I meant. With WordPress 3 I am setting up my 
   custom menu and am using a page as the first menu item. In my example it is “
   Portfolio”. Say in a month, I am deciding to move a different page or category
   from my custom menu to the first spot.
 * I would like to be able to link to the first item in my WP 3 menu from the homepage,
   no matter if it’s the “Portfolio” page or a different page. So I am looking for
   a way to output the URL to this first item in my menu.
 * Thanks,
    Martin
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Rich Text Widget] Ad an image is not working](https://wordpress.org/support/topic/plugin-rich-text-widget-ad-an-image-is-not-working/)
 *  [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/plugin-rich-text-widget-ad-an-image-is-not-working/#post-1322184)
 * Worked for me too. Thanks a lot modify!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Removing link to JPG file when using gallery function](https://wordpress.org/support/topic/removing-link-to-jpg-file-when-using-gallery-function/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [17 years ago](https://wordpress.org/support/topic/removing-link-to-jpg-file-when-using-gallery-function/#post-1166628)
 * Maybe that has to do with a “adjacent_image_link” function but I can’t figure
   out what this does…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Updated captions in Media Library don’t show up in post](https://wordpress.org/support/topic/updated-captions-in-media-library-dont-show-up-in-post/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [17 years ago](https://wordpress.org/support/topic/updated-captions-in-media-library-dont-show-up-in-post/#post-1158128)
 * Does anybody have an idea if this can be solved?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [organizing my link list](https://wordpress.org/support/topic/organizing-my-link-list/)
 *  [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [17 years ago](https://wordpress.org/support/topic/organizing-my-link-list/#post-1158050)
 * If you want to order categories of links you could use the following code in 
   your template. You would use this code to display one link category at a time.
 * <?php wp_list_bookmarks(‘title_li=&title_before=<h1 class=”sample”>&title_after
   =</h1>&category_before=&category_after=&category_name=Name of Link Category’);?
   >
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Updated captions in Media Library don’t show up in post](https://wordpress.org/support/topic/updated-captions-in-media-library-dont-show-up-in-post/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [17 years ago](https://wordpress.org/support/topic/updated-captions-in-media-library-dont-show-up-in-post/#post-1158049)
 * Is there any way to automate this process so that when I change a caption in 
   the Media Library it will automatically reflect in the caption of a posted image?
   
   That’s what I would expect to happen.
 * Thanks,
    Martin
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Gallery function not showing up in 2.8.2](https://wordpress.org/support/topic/gallery-function-not-showing-up-in-282/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [17 years ago](https://wordpress.org/support/topic/gallery-function-not-showing-up-in-282/#post-1156173)
 * CoolKarma is right, you have to actually insert the first image into a post and
   then click on the media uploader again. Otherwise the Gallery tab won’t show 
   up. Thanks for the tip!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Gallery function not showing up in 2.8.2](https://wordpress.org/support/topic/gallery-function-not-showing-up-in-282/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [17 years ago](https://wordpress.org/support/topic/gallery-function-not-showing-up-in-282/#post-1156068)
 * That is exactly how I uplopad images. But even after uploading images, all the
   tabs I see are:
 *  * From Computer
    * From URL * Media Library
 * No idea what is going on here. I just installed WP 2.8.2 in a different folder
   on the server using a different database and the Gallery tab still does not show
   up.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Gallery function not showing up in 2.8.2](https://wordpress.org/support/topic/gallery-function-not-showing-up-in-282/)
 *  Thread Starter [mfuchs](https://wordpress.org/support/users/mfuchs/)
 * (@mfuchs)
 * [17 years ago](https://wordpress.org/support/topic/gallery-function-not-showing-up-in-282/#post-1156015)
 * kichu, I just uploaded the wp-admin folder again but still no Gallery tab in 
   the upload media window…
 * Shane, I haven’t installed a single plugin yet, this is a brand new WordPress
   installation. The gallery function I am refering to should be build into WordPress,
   it’s not a plugin.

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

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