Matias Mann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link to a YouTube videoYou 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 video1) 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
Forum: Fixing WordPress
In reply to: Edit meta tags and title tags for individual postsI 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
In reply to: Flickering Admin ScreenWhat 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
In reply to: Problem with Portfolios1) Go to Settings > Permalinks.
2) Save the configuration to flush the permalinks.
Check if it works.Have you updated wordpress recently?
Forum: Fixing WordPress
In reply to: Big gap between post titles and body textIs it still happening? It looks good on my end.
- This reply was modified 6 years ago by Matias Mann.
Forum: Fixing WordPress
In reply to: Custom Menu Header showing all pagesTry activating the default theme.
If the menu appears in the location it is a theme related issue.Forum: Fixing WordPress
In reply to: Custom Menu Header showing all pagesWordpress 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.