Wordpress full text without intro text - wordpress

I need to show the posts of a wordpress site but without the intro text, that is, I want the intro text, the text before the read more, not to show. How can I do that? Thanks.

If you are looking at hiding the intro text in the posts listing, then you will have to edit the post.php page within the theme folder. If you are not into PHP code, then I suggest you look for a theme where the post intro is no shown in the listing.

Related

Adding link as text in Avada's 'text block' causing issue in WordPress blog post

I need to add this link to WordPress, as a reference to photo: https://unsplash.com/photos/WoUiQ65Grns When I add it, it automatically moves the whole blog post text and photos to right in mobile view.
I am using Avada theme of WordPress and trying to add it in a post, as a text in Avada's 'Text Block'. Can you tell me what is wrong with this link and how to fix it?
( As I tested further, some other website links are also causing same issue in blog posts. )
Might be you want to add the correct link to your WordPress site, the link https://unsplash.com/photos/WoUiQ65Grns is not just a photo, it's a site that includes the photo element, so maybe you can use the https://images.unsplash.com/photo-1554896593-e7f761a681f9 correct link into your WordPress site.

How to hide the title of blog post and only show the H1 title?

I want to show the title of my blog post to only search engines and want to show h1 title to my readers inside my blog post.
But whenever I write the title on WordPress and hit update. It shows me both title as well as the h1 tag.
So it is quite annoying to me as well as for readers.
I have installed "title remover" plugin and I can't see the title now in the blog post. So the problem is solved.
But I want to know is there any other way to hide title but only show in search results?
I have attached screenshots to understand better. Basically, I see on many Blogs that they only show title on the search result pages but when we click we get to see h1 tag inside the posts.
I want to show only title for search pages and not in blog posts inside.
Here is the screenshots
Wordpress interface
Blog Page where I want only H1 to show and not title
Title Remover Plugin Interface
I want to know is there any other way to remove title from blog post?
Definitely there is an easy fix to this, you need to browse your theme and find your post template - wp-content->themes->my_theme_name. Now different themes may have a different file/folder structure but usually in the root theme folder the file that displays your posts is called single.php Open up this file and you'll see the WP loop calling for the template that will output your post content - something like this - http://joxi.ru/YmE6BlxC0W5jR2 When you locate your template which outpust your posts content you will see the the_title() - the function that 'prints' your posts title - http://joxi.ru/4AkknX4IyGZR8A
Edit css of your blog title and add this css code
.post-title {
display: none;
}

Customising Wordpress Template

I bought a Template Monster WP Template in order to customize it. I want it not to have any "blog" structuring. What I mean by that is losing the author name, comments closed notification, sidebar presence in various pages. Does anyone know where I can find tutorials on this or any advise?
Maybe you could create child theme on top of Template Monster and override it
http://codex.wordpress.org/Child_Themes
This is what I do -
Open all of the theme's files in notepad++ or another text editor.
Use Chrome's inspect element to select the author name and element.
Let's say it is - <h1 class="author-title">Some Author</h1>
I will then select <h1 class="author-title"> and search all files for this in my text editor. My guess is that it will probably be in single.php
You can than delete or comment out the section and It will no longer appear on the page.

Wordpress Stripping links and text formatting on Blog Front Page

The summary page of blog posts (Blog Front Page) is not showing the right formatting of copy as per the full blog post.
For example, look at "Article in the Vancouver Sun..." in second article here: http://socialinnovationbc.ca/news/
and then see it in the full post here: http://socialinnovationbc.ca/2011/11/collaboration-innovation-key-to-social-ills/
It has removed the link, plus the formatting.
Any ideas how to stop it doing that?
Never seen this issue in Wordpress before.
Thanks
WordPress by default strips html and short-codes while the excerpt is shown. One work around is to add the html in the excerpt text area field for the post. Any html added to the excerpt metabox would not be filtered.

Short description in Wordpress

I want to display on main page names of articles and short text of articles. Now WP displays full articles and it is big problem for me.
Is there a way to display short text of articles on main page?
In navigation admin menu, go to Setting->Reading, there is an option For each article in a feed, show, choose Summary.
Hope it helps.
You can use the [more] tag in wordpress (there is even a button in the GUI article editor that says more)

Resources