Title: Matias Mann's Replies - page 6 | WordPress.org

---

# Matias Mann

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

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

 Search replies:

## Forum Replies Created

Viewing 7 replies - 76 through 82 (of 82 total)

[←](https://wordpress.org/support/users/developress/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/developress/replies/?output_format=md) [2](https://wordpress.org/support/users/developress/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/developress/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/developress/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/developress/replies/page/5/?output_format=md)
6

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Link to a YouTube video](https://wordpress.org/support/topic/link-to-a-youtube-video/)
 *  [Matias Mann](https://wordpress.org/support/users/developress/)
 * (@developress)
 * [6 years ago](https://wordpress.org/support/topic/link-to-a-youtube-video/#post-12725195)
 * You are inserting the video, that´s why wordpress shows it in the post.
    To open
   the video in a new window, insert a link to the video
 * 1) In a Paragraph block add some text: “This is the text link”
    2) Select the
   text and create a link with the URL of the youtube video. 3) Set the link to 
   open in a new window. 4) Done!
 * Here is a screenshot: [https://pasteboard.co/J5hSER1.png](https://pasteboard.co/J5hSER1.png)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Edit meta tags and title tags for individual posts](https://wordpress.org/support/topic/edit-meta-tags-and-title-tags-for-individual-posts/)
 *  [Matias Mann](https://wordpress.org/support/users/developress/)
 * (@developress)
 * [6 years ago](https://wordpress.org/support/topic/edit-meta-tags-and-title-tags-for-individual-posts/#post-12725146)
 * I would advice to use a plugin such as Yoast.
 * If you want to do it manually.
    1) In your theme functions add:
 *     ```
       /**
        * Modify Meta Description on Single Posts
        */
       function developress_meta_description() {
       	global $post;
       	// Get the description meta from a custom field
           if ( is_single() ) {
       		$description_meta = get_post_meta($post->ID, 'description_meta', true);
               $description_meta = strip_tags( $description_meta);
               $description_meta = strip_shortcodes( $description_meta );
               $description_meta = str_replace( array("\n", "\r", "\t"), ' ', $description_meta );
               $description_meta = mb_substr( $description_meta, 0, 300, 'utf8' );
               echo '<meta name="description" content="' . $description_meta . '" />' . "\n";
           }
       }
       add_action( 'wp_head', 'developress_meta_description');
       ```
   
 * 2) In each post you want to add a meta description. create a custom field named“
   description_meta”
 * This is for the meta description. For the title it can be done with a title filter.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Flickering Admin Screen](https://wordpress.org/support/topic/flickering-admin-screen/)
 *  [Matias Mann](https://wordpress.org/support/users/developress/)
 * (@developress)
 * [6 years ago](https://wordpress.org/support/topic/flickering-admin-screen/#post-12724768)
 * What theme are you using?
 * Activate the default theme and check if the problem persists. If not, it is a
   theme related issue.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problem with Portfolios](https://wordpress.org/support/topic/problem-with-portfolios/)
 *  [Matias Mann](https://wordpress.org/support/users/developress/)
 * (@developress)
 * [6 years ago](https://wordpress.org/support/topic/problem-with-portfolios/#post-12724764)
 * 1) Go to Settings > Permalinks.
    2) Save the configuration to flush the permalinks.
   Check if it works.
 * Have you updated wordpress recently?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Big gap between post titles and body text](https://wordpress.org/support/topic/big-gap-between-post-titles-and-body-text/)
 *  [Matias Mann](https://wordpress.org/support/users/developress/)
 * (@developress)
 * [6 years ago](https://wordpress.org/support/topic/big-gap-between-post-titles-and-body-text/#post-12724757)
 * Is it still happening? It looks good on my end.
    -  This reply was modified 6 years ago by [Matias Mann](https://wordpress.org/support/users/developress/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom Menu Header showing all pages](https://wordpress.org/support/topic/custom-menu-header-showing-all-pages/)
 *  [Matias Mann](https://wordpress.org/support/users/developress/)
 * (@developress)
 * [6 years ago](https://wordpress.org/support/topic/custom-menu-header-showing-all-pages/#post-12724742)
 * Try activating the default theme.
    If the menu appears in the location it is 
   a theme related issue.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom Menu Header showing all pages](https://wordpress.org/support/topic/custom-menu-header-showing-all-pages/)
 *  [Matias Mann](https://wordpress.org/support/users/developress/)
 * (@developress)
 * [6 years ago](https://wordpress.org/support/topic/custom-menu-header-showing-all-pages/#post-12722945)
 * Wordpress shows by default your pages as menu when no menu is created or when
   no menu is assigned to the menu location.
 * You probably did not assign the menu to its location.
    1) Go to wp admin. 2) 
   Go to Appearence > Menus. 3) Click on “Manage Locations” tab. 4) Set your menu
   to the location you want. 5) Save.

Viewing 7 replies - 76 through 82 (of 82 total)

[←](https://wordpress.org/support/users/developress/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/developress/replies/?output_format=md) [2](https://wordpress.org/support/users/developress/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/developress/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/developress/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/developress/replies/page/5/?output_format=md)
6